File: rt55244.t

package info (click to toggle)
libdbd-firebird-perl 0.91-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 680 kB
  • sloc: perl: 4,085; ansic: 2,262; makefile: 14
file content (47 lines) | stat: -rw-r--r-- 991 bytes parent folder | download | duplicates (8)
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
#!/usr/bin/perl -w
# test for https://rt.cpan.org/Public/Bug/Display.html?id=55244

use strict;
use warnings;

use Test::More;
use lib 't','.';

use TestFirebird;
my $T = TestFirebird->new;

my ( $dbh, $error_str )
    = $T->connect_to_database( { AutoCommit => 0, RaiseError => 1 } );

if ($error_str) {
    BAIL_OUT("Unknown: $error_str!");
}

unless ( $dbh->isa('DBI::db') ) {
    plan skip_all => 'Connection to database failed, cannot continue testing';
}
else {
    plan tests => 6;
}

ok($dbh, 'Connected to the database');

my $table = find_new_table($dbh);
ok( $dbh->do("CREATE TABLE $table(i INTEGER NOT NULL)"),
    'table $table created' );

$dbh->commit;

my $insert_sql = "INSERT INTO $table(i) VALUES(42)";
my $sth = $dbh->prepare_cached($insert_sql);
ok( $sth->execute );

$dbh->rollback;

$sth = $dbh->prepare_cached($insert_sql);
ok( $sth->execute(), 'cached statement execues after rollback' );

ok( $dbh->do("DROP TABLE $table") );
$dbh->commit;
ok( $dbh->disconnect );