We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ea0b5 commit 65870a1Copy full SHA for 65870a1
ext/pdo_odbc/tests/gh9372.phpt
@@ -15,7 +15,7 @@ $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
15
$db->exec("CREATE TABLE gh9372 (col VARCHAR(10))");
16
$db->exec("INSERT INTO gh9372 VALUES ('something')");
17
18
-$stmt = $db->prepare("SELECT * FROM bug74186 WHERE col = ?");
+$stmt = $db->prepare("SELECT * FROM gh9372 WHERE col = ?");
19
$stmt->bindValue(1, 'something else');
20
try {
21
$stmt->execute();
@@ -25,7 +25,7 @@ try {
25
}
26
27
28
29
$stream = fopen("php://memory", "w+");
30
fwrite($stream, 'something else');
31
rewind($stream);
0 commit comments