Skip to content

Commit 2487354

Browse files
committed
Merge 3561 (Fix NH-1254 by Stephan Gerth)
SVN: trunk@3562
1 parent 335aa51 commit 2487354

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/NHibernate/Dialect/SybaseAnywhereDialect.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
namespace NHibernate.Dialect
44
{
55
/// <summary>
6-
/// An SQL dialect for Sybase Adaptive Server Anywhere 9.0
6+
/// An SQL dialect for Sybase Adaptive Server Anywhere 10.0
77
/// </summary>
88
/// <remarks>
99
/// <p>
1010
/// This dialect probably will not work with schema-export. If anyone out there
1111
/// can fill in the ctor with DbTypes to Strings that would be helpful.
1212
/// </p>
13-
/// The SybaseAnywhereDialect defaults the following configuration properties:
13+
/// The SybaseAnywhere10Dialect defaults the following configuration properties:
1414
/// <list type="table">
1515
/// <listheader>
1616
/// <term>Property</term>
@@ -111,4 +111,4 @@ public override bool DropConstraints
111111
get { return false; }
112112
}
113113
}
114-
}
114+
}

src/NHibernate/Driver/ASAClientDriver.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ public class ASAClientDriver : ReflectionBasedDriver
1111
/// Initializes a new instance of the <see cref="ASAClientDriver"/> class.
1212
/// </summary>
1313
/// <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.
1515
/// </exception>
1616
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")
1818
{
1919
}
2020

2121
/// <summary>
22-
/// iAnywhere.Data.AsaClient uses named parameters in the sql.
22+
/// iAnywhere.Data.SQLAnywhere uses named parameters in the sql.
2323
/// </summary>
2424
/// <value><see langword="true" /> - Sybase uses <c>String.Empty</c> in the sql.</value>
2525
public override bool UseNamedPrefixInSql
@@ -33,11 +33,11 @@ public override bool UseNamedPrefixInParameter
3333
}
3434

3535
/// <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.
3737
/// </summary>
3838
public override string NamedPrefix
3939
{
4040
get { return string.Empty; }
4141
}
4242
}
43-
}
43+
}

0 commit comments

Comments
 (0)