1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# This tests, whether the number of rows can be retrieved.
use strict;
use warnings;
use lib "t/lib";
use SQLiteTest;
use Test::More;
use if -d ".git", "Test::FailWarnings";
sub rows {
my $sth = shift;
my $expected = shift;
my $count = 0;
while ($sth->fetchrow_arrayref) {
++$count;
}
Test::More::is( $count, $expected, "Got $expected rows" );
}
# Create a database
my $dbh = connect_ok();
# Create the table
ok( $dbh->do(<<'END_SQL'), 'CREATE TABLE' );
CREATE TABLE one (
id INTEGER NOT NULL,
name CHAR (64) NOT NULL
)
END_SQL
# Insert into table
ok(
$dbh->do("INSERT INTO one VALUES ( 1, 'A' )"),
'INSERT 1',
);
# Count the rows
SCOPE: {
my $sth = $dbh->prepare('SELECT * FROM one WHERE id = 1');
isa_ok( $sth, 'DBI::st' );
ok( $sth->execute, '->execute' );
rows( $sth, 1 );
ok( $sth->finish, '->finish' );
}
# Insert another row
ok(
$dbh->do("INSERT INTO one VALUES ( 2, 'Jochen Wiedmann' )"),
'INSERT 2',
);
# Count the rows
SCOPE: {
my $sth = $dbh->prepare('SELECT * FROM one WHERE id >= 1');
isa_ok( $sth, 'DBI::st' );
ok( $sth->execute, '->execute' );
rows( $sth, 2 );
ok( $sth->finish, '->finish' );
}
# Insert another row
ok(
$dbh->do("INSERT INTO one VALUES ( 3, 'Tim Bunce' )"),
'INSERT 3',
);
# Count the rows
SCOPE: {
my $sth = $dbh->prepare('SELECT * FROM one WHERE id >= 2');
isa_ok( $sth, 'DBI::st' );
ok( $sth->execute, '->execute' );
rows( $sth, 2 );
ok( $sth->finish, '->finish' );
}
done_testing;
|