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 77 78
|
use strict;
use warnings;
use lib "t/lib";
use SQLiteTest;
use Test::More;
use if -d ".git", "Test::FailWarnings";
use DBI qw(:sql_types);
my $dbh = connect_ok();
$dbh->do('CREATE TABLE foo (bar TEXT, num INT)');
foreach ( 1..5 ) {
$dbh->do(
'INSERT INTO foo (bar, num) VALUES (?, ?)',
undef, ($_%2 ? "odd" : "even"), $_
);
}
# DBI->trace(9);
# see if placeholder works
my ($v, $num) = $dbh->selectrow_array(
'SELECT bar, num FROM foo WHERE num = ?',
undef, 3
);
ok( $v eq 'odd' && $num == 3 );
# see if the sql itself works as expected
my $ar = $dbh->selectall_arrayref(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > 1'
);
is( scalar(@$ar), 2, 'Got 2 results' );
# known workaround 1
# ref: http://code.google.com/p/gears/issues/detail?id=163
$ar = $dbh->selectall_arrayref(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > 0+?',
undef, 1
);
is( scalar(@$ar), 2, 'Got 2 results' );
# known workaround 2
my $sth = $dbh->prepare(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > ?',
);
$sth->bind_param(1, 1, { TYPE => SQL_INTEGER });
$sth->execute;
$ar = $sth->fetchall_arrayref;
is( scalar(@$ar), 2, 'Got 2 results' );
# known workaround 3
{
local $dbh->{sqlite_see_if_its_a_number} = 1;
my $ar = $dbh->selectall_arrayref(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > ?',
undef, 1
);
is( scalar(@$ar), 2, 'Got 2 results' );
}
# known workaround 4
$ar = $dbh->selectall_arrayref(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > cast(? as integer)',
undef, 1);
is( scalar(@$ar), 2, 'Got 2 results' );
# and this is what should be tested
#TODO: {
local $TODO = 'This test is currently broken again. Wait for a better fix, or use known workarounds shown above';
$ar = $dbh->selectall_arrayref(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > ?',
undef, 1
);
# print "4: @$_\n" for @$ar;
is( scalar(@$ar), 2, "we got ".(@$ar)." items" );
#}
done_testing;
|