What kind of problem are you having accessing your Sybase database?
"Sybase Error 7713: Stored Procedure can only be executed in unchained transaction mode" error
To fix the autocommit(true) mode problem, let the application change the connection to chained mode using the Connection.setAutoCommit(false) mode, or use a set chained on language command.
To resolve the stored procedure problem, use the sp_procxmode procedure_name "anymode" command.
"JZ0XS: The server does not support XA-style transactions. Please verify that the transaction feature is enabled and licensed on this server."
This error occurs when XA-style transactions are attempted on a server that does not have Distributed Transaction Management (DTM) installed.
A container managed persistence (CMP) enterprise bean is causing exceptions
This error is caused by improper use of reserved words. Reserved words cannot be used as column names.
To correct this problem: Rename the variable to remove the reserved word. You can find a list of reserved words in the Sybase Adaptive Server Enterprise Reference Manual; Volume 1: Building Blocks, Chapter 4. This manual is available online at: http://manuals.sybase.com/onlinebooks/group-as/asg1250e/refman.
Related tasks
Troubleshooting by task
Troubleshooting by component
Example: Accessing data using IBM extended APIs to share connections
between container-managed and bean-managed persistence beans
Related reference
Cannot access a data source
Problems accessing an Oracle data source
Problems accessing a DB2 database
Problems accessing a SQL server data source
Problems accessing a Cloudscape database
Extensions to data access APIs