@@ -11,12 +11,12 @@ Task Set-Configuration {
11
11
$allSettings = @ {
12
12
' Firebird' = @ {
13
13
' connection.connection_string' = ' DataSource=localhost;Database=nhibernate;User ID=SYSDBA;Password=masterkey;MaxPoolSize=200;' ;
14
- ' connection.driver_class' = ' NHibernate.Driver.FirebirdClientDriver ' ;
14
+ ' connection.driver_class' = ' NHibernate.Driver.FirebirdDriver, NHibernate.Driver.Firebird ' ;
15
15
' dialect' = ' NHibernate.Dialect.FirebirdDialect'
16
16
};
17
17
' MySQL' = @ {
18
18
' connection.connection_string' = ' Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;' ;
19
- ' connection.driver_class' = ' NHibernate.Driver.MySqlDataDriver ' ;
19
+ ' connection.driver_class' = ' NHibernate.Driver.MySqlDriver, NHibernate.Driver.MySql ' ;
20
20
' dialect' = ' NHibernate.Dialect.MySQL5Dialect'
21
21
};
22
22
' Odbc' = @ {
@@ -35,7 +35,7 @@ Task Set-Configuration {
35
35
};
36
36
' PostgreSQL' = @ {
37
37
' connection.connection_string' = ' Host=localhost;Port=5432;Username=postgres;Password=Password12!;Database=nhibernate;Enlist=true' ;
38
- ' connection.driver_class' = ' NHibernate.Driver.NpgsqlDriver ' ;
38
+ ' connection.driver_class' = ' NHibernate.Driver.PostgreSqlDriver, NHibernate.Driver.PostgreSql ' ;
39
39
' dialect' = ' NHibernate.Dialect.PostgreSQL83Dialect'
40
40
};
41
41
' SQLite' = @ {
@@ -46,13 +46,13 @@ Task Set-Configuration {
46
46
and https://github.com/nhibernate/nhibernate-core/issues/1362 #>
47
47
# Please note the connection string is formated for putting the db file in $configDir.
48
48
' connection.connection_string' = " Data Source=$configDir /NHibernate.db;DateTimeFormatString=yyyy-MM-dd HH:mm:ss.FFFFFFF;" ;
49
- ' connection.driver_class' = ' NHibernate.Driver.SQLite20Driver ' ;
49
+ ' connection.driver_class' = ' NHibernate.Driver.SQLiteDriver, NHibernate.Driver.SQLite ' ;
50
50
' dialect' = ' NHibernate.Dialect.SQLiteDialect'
51
51
};
52
52
' SqlServerCe' = @ {
53
53
# Please note the connection string is formated for putting the db file in $configDir.
54
54
' connection.connection_string' = " Data Source=$configDir /NHibernate.sdf;" ;
55
- ' connection.driver_class' = ' NHibernate.Driver.SqlServerCeDriver ' ;
55
+ ' connection.driver_class' = ' NHibernate.Driver.SqlServerCompactDriver, NHibernate.Driver.SqlServer.Compact ' ;
56
56
' command_timeout' = ' 0' ;
57
57
' dialect' = ' NHibernate.Dialect.MsSqlCe40Dialect'
58
58
};
0 commit comments