From: <leg...@at...> - 2003-12-02 17:06:59
|
Message: A new issue has been created in JIRA. --------------------------------------------------------------------- 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: Unassigned Priority: Major Project: Hibernate2 Components: core Versions: 2.1 beta 4 Assignee: Reporter: John Urberg Created: Tue, 2 Dec 2003 11:06 AM Updated: Tue, 2 Dec 2003 11:06 AM 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 |