File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 3
3
namespace NHibernate . Dialect
4
4
{
5
5
/// <summary>
6
- /// An SQL dialect for Sybase Adaptive Server Anywhere 9 .0
6
+ /// An SQL dialect for Sybase Adaptive Server Anywhere 10 .0
7
7
/// </summary>
8
8
/// <remarks>
9
9
/// <p>
10
10
/// This dialect probably will not work with schema-export. If anyone out there
11
11
/// can fill in the ctor with DbTypes to Strings that would be helpful.
12
12
/// </p>
13
- /// The SybaseAnywhereDialect defaults the following configuration properties:
13
+ /// The SybaseAnywhere10Dialect defaults the following configuration properties:
14
14
/// <list type="table">
15
15
/// <listheader>
16
16
/// <term>Property</term>
@@ -111,4 +111,4 @@ public override bool DropConstraints
111
111
get { return false ; }
112
112
}
113
113
}
114
- }
114
+ }
Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ public class ASAClientDriver : ReflectionBasedDriver
11
11
/// Initializes a new instance of the <see cref="ASAClientDriver"/> class.
12
12
/// </summary>
13
13
/// <exception cref="HibernateException">
14
- /// Thrown when the ASA .Data.AseClient assembly is not and can not be loaded.
14
+ /// Thrown when the iAnywhere .Data.SQLAnywhere assembly is not and can not be loaded.
15
15
/// </exception>
16
16
public ASAClientDriver ( )
17
- : base ( "iAnywhere.Data.AsaClient " , "iAnywhere.Data.AsaClient.AsaConnection " , "iAnywhere.Data.AsaClient.AsaCommand " )
17
+ : base ( "iAnywhere.Data.SQLAnywhere " , "iAnywhere.Data.SQLAnywhere.SAConnection " , "iAnywhere.Data.SQLAnywhere.SACommand " )
18
18
{
19
19
}
20
20
21
21
/// <summary>
22
- /// iAnywhere.Data.AsaClient uses named parameters in the sql.
22
+ /// iAnywhere.Data.SQLAnywhere uses named parameters in the sql.
23
23
/// </summary>
24
24
/// <value><see langword="true" /> - Sybase uses <c>String.Empty</c> in the sql.</value>
25
25
public override bool UseNamedPrefixInSql
@@ -33,11 +33,11 @@ public override bool UseNamedPrefixInParameter
33
33
}
34
34
35
35
/// <summary>
36
- /// iAnywhere.Data.AsaClient use the <c>string.Empty</c> to locate parameters in sql.
36
+ /// iAnywhere.Data.SQLAnywhere use the <c>string.Empty</c> to locate parameters in sql.
37
37
/// </summary>
38
38
public override string NamedPrefix
39
39
{
40
40
get { return string . Empty ; }
41
41
}
42
42
}
43
- }
43
+ }
You can’t perform that action at this time.
0 commit comments