How can I both set rowcount and then execute a query in a Statement.executeQuery() function?
note I don't want to use Statement.setMaxRows() to do this
I've encountered a cryptic error message thrown by Sybase IQ server.
com.sybase.jdbc2.jdbc.SybSQLException: ASA Error -1001019: Function not supported on varchars longer than 255 Length of Bind host variable exceeds MaxLength ,
...
I need to do bulk inserts/updates/deletes on a table-by-table basis via JDBC. Database is Sybase.
Because of FK checks, I can't do this, because I temporarily violate integrity.
In MySQL I can easily ...
I am doing a bulk insert using sybase temporary table approach (# table name). This happens in a transaction. However this operation is committing the data transaction. ( I ...
I have been trying to fix an issue for the past 3 days but I'm getting no where. Someone please help!!!
I am trying to call an Insert stored procedure at Sybase ...
In my Sybase 12.0 ASE database, I have at table that contains a column defined as binary(16) and used to store GUIDS/UUIDs. When i run a select query using a ...