8 eval "use DBD::SQLite";
10 ? ( skip_all => 'needs DBD::SQLite for testing' )
17 DBICTest->init_schema();
19 DBICTest->schema->storage->sql_maker->quote_char("'");
20 DBICTest->schema->storage->sql_maker->name_sep('.');
22 my $rs = DBICTest::CD->search(
23 { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
24 { join => 'artist' });
26 cmp_ok( $rs->count, '==', 1, "join with fields quoted");
28 $rs = DBICTest::CD->search({},
29 { 'order_by' => 'year DESC'});
32 local $SIG{__WARN__} = sub { $warnings .= $_[0] };
33 my $first = eval{ $rs->first() };
34 ok( $warnings =~ /ORDER BY terms/, "Problem with ORDER BY quotes" );
37 my $order = 'year DESC';
38 $rs = DBICTest::CD->search({},
39 { 'order_by' => \$order });
42 local $SIG{__WARN__} = sub { $warnings .= $_[0] };
43 my $first = $rs->first();
44 ok( $warnings !~ /ORDER BY terms/,
45 "No problem handling ORDER by scalaref" );
48 DBICTest->schema->storage->sql_maker->quote_char([qw/[ ]/]);
49 DBICTest->schema->storage->sql_maker->name_sep('.');
51 $rs = DBICTest::CD->search(
52 { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
53 { join => 'artist' });
54 cmp_ok($rs->count,'==', 1,"join quoted with brackets.");
61 DBICTest->schema->storage->sql_maker->quote_char('`');
62 DBICTest->schema->storage->sql_maker->name_sep('.');
64 cmp_ok(DBICTest->schema->storage->sql_maker->update('group', \%data), 'eq', 'UPDATE `group` SET `name` = ?, `order` = ?', "quoted table names for UPDATE");