diff --git a/test/functional/pdo_sqlsrv/pdo_errorinfo_emulateprepare.phpt b/test/functional/pdo_sqlsrv/pdo_errorinfo_emulateprepare.phpt index 29c4426a..2fea191b 100644 --- a/test/functional/pdo_sqlsrv/pdo_errorinfo_emulateprepare.phpt +++ b/test/functional/pdo_sqlsrv/pdo_errorinfo_emulateprepare.phpt @@ -20,7 +20,7 @@ try { echo "\n****testing with emulate prepare****\n"; // Do not support emulate prepare with Always Encrypted - if (!isColEncrypted()) { + if (!isAEConnected()) { $stmt = $conn->prepare("SELECT c2 FROM $tbname WHERE c1= :int", array(PDO::ATTR_EMULATE_PREPARES => true)); } else { $stmt = $conn->prepare("SELECT c2 FROM $tbname WHERE c1= :int"); @@ -32,7 +32,7 @@ try { $stmt->execute(); $stmt_error = $stmt->errorInfo(); - if (!isColEncrypted()) { + if (!isAEConnected()) { if ($stmt_error[0] != "HY093") { echo "SQLSTATE should be HY093 when Emulate Prepare is true.\n"; print_r($stmt_error); diff --git a/test/functional/pdo_sqlsrv/pdo_param_output_variants.phpt b/test/functional/pdo_sqlsrv/pdo_param_output_variants.phpt index 0f87fc3b..782ed15a 100644 --- a/test/functional/pdo_sqlsrv/pdo_param_output_variants.phpt +++ b/test/functional/pdo_sqlsrv/pdo_param_output_variants.phpt @@ -22,7 +22,7 @@ function testReverse($conn) $stmt->execute(); // Connection with Column Encryption enabled works for non encrypted SQL_VARIANT // Since SQLDescribeParam is called - if (isColEncrypted() && $string === "987654321") { + if (isAEConnected() && $string === "987654321") { echo "Testing input output parameter with SQL_VARIANT is successful.\n"; } else { @@ -31,7 +31,7 @@ function testReverse($conn) } catch (Exception $e) { //echo "Failed when calling the reverse procedure\n"; $error = $e->getMessage(); - if (!isColEncrypted() && strpos($error, "Implicit conversion from data type sql_variant to nvarchar is not allowed.") !== false) { + if (!isAEConnected() && strpos($error, "Implicit conversion from data type sql_variant to nvarchar is not allowed.") !== false) { echo "Testing input output parameter with SQL_VARIANT is successful.\n"; } else { echo "$error\n"; @@ -47,7 +47,7 @@ function createVariantTable($conn, $tableName) echo $e->getMessage(); } $data = "This is to test if sql_variant works with output parameters"; - if (!isColEncrypted()) { + if (!isAEConnected()) { $tsql = "INSERT INTO [$tableName] ([c1_int], [c2_variant]) VALUES (1, ?)"; $stmt = $conn->prepare($tsql); $result = $stmt->execute(array($data)); @@ -78,7 +78,7 @@ function testOutputParam($conn, $tableName) $stmt->bindValue(1, 1); $stmt->bindParam(2, $callResult, PDO::PARAM_STR, 100); $stmt->execute(); - if (isColEncrypted() && $callResult === "This is to test if sql_variant works with output parameters") { + if (isAEConnected() && $callResult === "This is to test if sql_variant works with output parameters") { echo "Testing output parameter with SQL_VARIANT is successful.\n"; } else { echo "Does SELECT from table work? $callResult \n"; @@ -88,7 +88,7 @@ function testOutputParam($conn, $tableName) echo "initialized data and result should be the same"; } $error = $e->getMessage(); - if (!isColEncrypted() && strpos($error, "Operand type clash: nvarchar(max) is incompatible with sql_variant") !== false) { + if (!isAEConnected() && strpos($error, "Operand type clash: nvarchar(max) is incompatible with sql_variant") !== false) { echo "Testing output parameter with SQL_VARIANT is successful.\n"; } else { echo "$error\n";