Message:
The following issue has been closed.
Resolver: Gavin King
Date: Tue, 2 Dec 2003 8:24 PM
Done, Thanks
---------------------------------------------------------------------
View the issue:
http://opensource.atlassian.com/projects/hibernate/secure/ViewIssue.jspa?key=HB-514
Here is an overview of the issue:
---------------------------------------------------------------------
Key: HB-514
Summary: SybaseAnywhereDialect should return " for open and close quote
Type: Bug
Status: Closed
Priority: Major
Resolution: FIXED
Project: Hibernate2
Components:
core
Fix Fors:
2.1 final
Versions:
2.1 beta 4
Assignee:
Reporter: John Urberg
Created: Tue, 2 Dec 2003 11:06 AM
Updated: Tue, 2 Dec 2003 8:24 PM
Environment: Sybase ASA 7.0.4, Windows 2000, Sybase JConnect 5.5 JDBC driver, Hibernate 2.1 beta 4
Description:
The SybaseAnywhereDialect uses the default sybase quote characters of [ and ]. The Sybase ASA database requires " as the quote characters. This can be changed by adding the following two methods to SybaseAnywhereDialect:
public char closeQuote() {
return '"';
}
public char openQuote() {
return '"';
}
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
|