removed connection keyword

This commit is contained in:
David Puglielli 2018-03-09 17:33:00 -08:00
parent 89df629d37
commit 17c3105522
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ set_time_limit(0);
sqlsrv_configure('WarningsReturnAsErrors', 1);
// Connect
$connectionInfo = array("CharacterSet"=>"UTF-8", "ColumnEncryption"=>"enabled");
$connectionInfo = array("CharacterSet"=>"UTF-8");
$conn = AE\connect($connectionInfo);
if (!$conn) {
fatalError("Could not connect.\n");

View file

@ -169,7 +169,7 @@ $conversionMatrixAE = array(array('y','y','y','x','x','x','x','x','x','x','x','x
set_time_limit(0);
sqlsrv_configure('WarningsReturnAsErrors', 1);
$connectionInfo = array("CharacterSet"=>"UTF-8", "ColumnEncryption"=>"enabled");
$connectionInfo = array("CharacterSet"=>"UTF-8");
$conn = AE\connect($connectionInfo);
if (!$conn) {
fatalError("Could not connect.\n");