Tagged Questions
The jconnect tag has no wiki summary.
4
votes
2answers
728 views
Sybase IN and OUT parameters
I'm going nuts about how the Sybase JDBC driver handles stored procedures with mixed IN and OUT parameters. Check out this simple stored procedure:
CREATE OR REPLACE PROCEDURE p (IN i1 INT, OUT o1 ...
1
vote
2answers
437 views
What is the list of JConnect error-codes?
I have recently changed an application from storing the database username and password in a configuration file (gasp password stored in plain text in a config file, I know, I know).
The application ...
0
votes
1answer
72 views
Reconnecting jdbc datasource to sybase ASE 12.5 after database restart
I have a java application that uses jtds driver and commons-dbcp as a connection pool. This application connects to the Sybase ASE 12.5. From time to time sybase is restarted for the maintenance. ...
0
votes
0answers
67 views
Direct access to Sybase 8 db file via JDBC without ODBC?
I would like to use an 64 bit version of Kettle CE to extract data
from a Sybase 8 DB file. As far as I saw, Kettle uses jTDS, which, however,
is only for Sybase 10 upwards.
Currently I can only ...
0
votes
2answers
83 views
How to call stored procedures in Sybase correctly
I'm trying to call some legacy stored procedures on a Sybase Database (ASE 15) using Spring JDBC.
I've got it working pretty good but I can't figure out how to get the returned value from the proc.
...
0
votes
0answers
77 views
Using jconnect 5.5 on sybase 15.5
We are currently doing a sybase upgrade from version 12.5 to 15.5. And our application is using JDK 1.3, so we have to keep using jconnect 5.5. As the sybase online documentation. We know the jconnect ...
0
votes
1answer
147 views
Java using Jconnect
Good day!
In order to access the mysql server, I used the JConnect and my code is as follows:
public AddBooks() {
try {
Class.forName("com.mysql.jdbc.Driver");
...
0
votes
1answer
474 views
Getting a Connection with DBCP via the Sybase Jconnect JDBC driver
I am trying to get a Connection in the following code and I keep getting an SQLException with the message "Login failed" and with the details "Specified database not found".
Connection con = null; ...
0
votes
1answer
661 views
“Invalid SQL statement or JDBC escape, terminating '}' not found.” with jTDS and Sybase
I'm calling a stored procedure via ibatis. It works, and has worked, when using the jconn2.jar (5.5). When I swap it out for the jtds jar (1.2.5) I get an exception "Invalid SQL statement or JDBC ...
0
votes
2answers
200 views
Sybase SQLAnywhere jConnect routines?
I have a database which is part of a closed system and the end-user of the system would like me to write some reports using the data contains in a Sybase SQL Anywhere Database. The system doesn't ...
0
votes
1answer
38 views
How to save sap IMetaData into file (and then reload it as IMetaData)?
I need to save the JCO (sap) IMetadata object in a file, then create the IMetaData object from the file on a different computer.
can anyone help me on how to do so?
thanks!
:)
0
votes
1answer
200 views
using readXML into a JCO.table after the XML was created using JCO
I created a JCO.table and transformed it into XML using myTable.writeXML (JCO method)
now I'm trying to re-load the XML into a JCO.table and work with the table created from the XML.
I tried to use ...