Add test 020 and 021 for PDO_SQLite.

This commit is contained in:
Magnus M��tt� 2005-03-09 04:45:08 +00:00
parent 27c43d5991
commit 4b4975f1f8
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,21 @@
--TEST--
PDO_SQLite: PDOStatement::columnCount
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc'); ?>
--FILE--
<?php
require_once('connection.inc');
require_once('prepare.inc');
require_once($PDO_TESTS . 'pdo_020.inc');
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
Counted 2 columns after select1.
Counted 3 columns after select2.
Counted 1 columns after select3.
===DONE===

View File

@ -0,0 +1,20 @@
--TEST--
PDO_SQLite: PDOStatement::execute with parameter markers.
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc'); ?>
--FILE--
<?php
require_once('connection.inc');
require_once('prepare.inc');
require_once($PDO_TESTS . 'pdo_021.inc');
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
There are 6 rows in the table.
There are 12 rows in the table.
===DONE===