added SQL Server test
|
1 |
use strict; |
2 |
use warnings; |
|
3 | ||
4 |
use FindBin; |
|
5 |
$ENV{DBIX_CUSTOM_TEST_RUN} = 1 |
|
6 |
if -f "$FindBin::Bin/run/common-postgresql.run"; |
|
7 |
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'postgresql private test'; |
|
8 | ||
9 |
use DBIx::Custom; |
|
10 |
{ |
|
11 |
package DBIx::Custom; |
|
12 |
no warnings 'redefine'; |
|
13 | ||
14 |
my $date_typename = 'date'; |
|
15 |
my $datetime_typename = 'datetime'; |
|
16 | ||
17 |
sub date_typename { lc $date_typename } |
|
18 |
sub datetime_typename { lc $datetime_typename } |
|
19 | ||
20 |
my $date_datatype = 91; |
|
21 |
my $datetime_datatype = 11; |
|
22 | ||
23 |
sub date_datatype { lc $date_datatype } |
|
24 |
sub datetime_datatype { lc $datetime_datatype } |
|
25 |
|
|
26 |
my $dsn = "dbi:ODBC:driver={SQL Server};Server={localhost\\SQLEXPRESS};" |
|
27 |
. "Trusted_Connection=No;AutoTranslate=No;Database=dbix_custom;"; |
|
28 |
has dsn => $dsn; |
|
29 |
has user => 'dbix_custom'; |
|
30 |
has password => 'dbix_custom'; |
|
31 |
|
|
32 |
sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255));' } |
|
33 |
sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), ' |
|
34 |
. 'key3 varchar(255), key4 varchar(255), key5 varchar(255));' } |
|
35 |
sub create_table1_type { "create table table1 (key1 $date_typename, key2 $datetime_typename);" } |
|
36 |
sub create_table1_highperformance { "create table table1 (ab varchar(255), bc varchar(255), " |
|
37 |
. "ik varchar(255), hi varchar(255), ui varchar(255), pq varchar(255), dc varchar(255));" } |
|
38 |
sub create_table2 { 'create table table2 (key1 varchar(255), key3 varchar(255));' } |
|
39 |
sub create_table2_2 { "create table table2 (key1 varchar(255), key2 varchar(255), key3 varchar(255))" } |
|
40 |
sub create_table3 { "create table table3 (key1 varchar(255), key2 varchar(255), key3 varchar(255))" } |
|
41 |
sub create_table_reserved { 'create table "table" ("select" varchar(255), "update" varchar(255))' } |
|
42 |
} |
|
43 | ||
44 |
require "$FindBin::Bin/common.t"; |