8 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_${_}" } qw/DSN USER PASS/};
10 plan skip_all => 'Set $ENV{DBICTEST_MSSQL_DSN}, _USER and _PASS to run this test'
15 my $schema = DBICTest::Schema->clone;
16 $schema->connection($dsn, $user, $pass);
18 my $dbh = $schema->storage->dbh;
20 isa_ok($schema->storage, 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server');
22 $dbh->do("IF OBJECT_ID('artist', 'U') IS NOT NULL
24 $dbh->do("IF OBJECT_ID('cd', 'U') IS NOT NULL
27 $dbh->do("CREATE TABLE artist (artistid INT IDENTITY PRIMARY KEY, name VARCHAR(100), rank INT DEFAULT '13', charfield CHAR(10) NULL);");
28 $dbh->do("CREATE TABLE cd (cdid INT IDENTITY PRIMARY KEY, artist INT, title VARCHAR(100), year VARCHAR(100), genreid INT NULL, single_track INT NULL);");
29 # Just to test compat shim, Auto is in Core
30 $schema->class('Artist')->load_components('PK::Auto::MSSQL');
33 my $new = $schema->resultset('Artist')->create( { name => 'foo' } );
34 ok($new->artistid, "Auto-PK worked");
38 $schema->resultset('Artist')->create( { name => 'Artist ' . $_, rank => $_ } );
41 my $it = $schema->resultset('Artist')->search( { },
44 order_by => 'artistid'
48 # Test ? in data don't get treated as placeholders
49 my $cd = $schema->resultset('CD')->create( {
51 title => 'Does this break things?',
54 ok($cd->id, 'Not treating ? in data as placeholders');
56 is( $it->count, 3, "LIMIT count ok" );
57 ok( $it->next->name, "iterator->next ok" );
60 is( $it->next, undef, "next past end of resultset ok" );
64 $dbh->do("IF OBJECT_ID('artist', 'U') IS NOT NULL DROP TABLE artist")
66 $dbh->do("IF OBJECT_ID('cd', 'U') IS NOT NULL DROP TABLE cd")