summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-07-07 12:44:44 +0000
committerWez Furlong <wez@php.net>2005-07-07 12:44:44 +0000
commit576ff830a9f0ba551500f2c8c19ae2393f0ad30a (patch)
tree6fd5a04e75e7486c12cf2b480ba34ccc0ee4565e /ext
parentf4681fd86b7d216da8bc7ecaf5c93e69df5753fd (diff)
downloadphp-git-576ff830a9f0ba551500f2c8c19ae2393f0ad30a.tar.gz
pedantic WS
Diffstat (limited to 'ext')
-rw-r--r--ext/pdo/tests/pdo_016.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/pdo/tests/pdo_016.phpt b/ext/pdo/tests/pdo_016.phpt
index 54923217af..cfa76df669 100644
--- a/ext/pdo/tests/pdo_016.phpt
+++ b/ext/pdo/tests/pdo_016.phpt
@@ -10,11 +10,11 @@ require getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
$db = PDOTest::factory();
$db->exec('CREATE TABLE test(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
-$db->exec('INSERT INTO test VALUES(0, \'String0\')');
-$db->exec('INSERT INTO test VALUES(1, \'String1\')');
-$db->exec('INSERT INTO test VALUES(2, \'String2\')');
-$stmt1 = $db->prepare('SELECT COUNT(idx) FROM test');
-$stmt2 = $db->prepare('SELECT idx, txt FROM test ORDER by idx');
+$db->exec('INSERT INTO test VALUES(0, \'String0\')');
+$db->exec('INSERT INTO test VALUES(1, \'String1\')');
+$db->exec('INSERT INTO test VALUES(2, \'String2\')');
+$stmt1 = $db->prepare('SELECT COUNT(idx) FROM test');
+$stmt2 = $db->prepare('SELECT idx, txt FROM test ORDER by idx');
$stmt1->execute();
var_dump($stmt1->fetchColumn());