Tagged Questions

open source JDBC driver for MS SQL Server

learn more… | top users | synonyms

7
votes
3answers
1k views

Using JTDS driver

I have here a situation. I have a almost release ready (release in 2 month) application that runs queries on the microsoft Sql-Server database.We use the standard Microsoft jdbc driver implementation ...
7
votes
2answers
8k views

What is the jTDS JDBC Connect URL to MS SQL Server 2005 Express

I'm trying to connect to a MS SQL Server 2005 Express database that is running on the local host from a java program. I have tried the same connect URL (below) that I used on another system (same ...
6
votes
7answers
953 views

Stored proc running 30% slower through Java versus running directly on database

I'm using Java 1.6, JTDS 1.2.2 (also just tried 1.2.4 to no avail) and SQL Server 2005 to create a CallableStatement to run a stored procedure (with no parameters). I am seeing the Java wrapper ...
6
votes
4answers
4k views

Is it possible to run multiple DDL statements inside a transaction (within SQL Server)?

I'm wondering if it is possible to run multiple DDL statements inside a transaction. I'm specially interested on SQL Server, even though answers with other databases (Oracle, Postgre at least) could ...
5
votes
1answer
140 views

Why is JTDS faster than Microsoft JDBC driver?

we're comparing JTDS and Microsoft SQL Server for a Java EE application running on JBoss and we're finding that JTDS is from 30% to 50% faster, benchmarking the application in a high concurrence ...
5
votes
3answers
15k views

Help me create a jTDS connection string

my sql server instance name is MYPC\SQLEXPRESS and I'm trying to create a jTDS connection string to connect to the database 'Blog'. Can anyone please help me accomplish that ? I'm trying to do like ...
3
votes
0answers
44 views

Issue with Chinese characters in Linux environment with SQL Server 2005

I am trying to get Chinese characters from a SQL Server 2005 database server with my web application hosted with Jboss server on a Linux box (RHEL). The issue is that the Chinese characters never get ...
3
votes
1answer
106 views

Poor performance using Hibernate Criteria API

I have a Java application using Hibernate to communicate with a MsSQL 2005 server, the driver is net.sourceforge.jtds 1.2.4. Things are working but the performance is horrible, I suspect the index ...
3
votes
2answers
449 views

Database connection unexpectedly closed with Glassfish, jTDS and SQL Server 2008

I have a Java EE application running on Glassfish and connecting to MSSQL Server 2008 through jTDS. For some unknown reason, the database connection becomes unexpectedly closed during requests. The ...
2
votes
2answers
153 views

How to pass Table-Valued Parameters (Array-like Parameter) to Stored Procedure in Microsoft SQL Server 2008 R2 using JDBC?

How to pass Table-Valued Parameters (Array-like Parameter) to Stored Procedure in Microsoft SQL Server 2008 R2 using Microsoft SQL Server 2008 R2 JDBC Driver ? Is it possible with jTDS?
2
votes
0answers
357 views

List of JDBC drivers for SQL Server 2008 (comparison) [closed]

I am in the process of evaluating a whole whack of JDBC drivers, specifically to use with SQL Server 2008 with Windows authentication. I gathered a list of ones that I found and have listed them ...
2
votes
2answers
426 views

connecting to multiple databases using different jdbc drivers

I have a requirement to write a daemon based java process (Not web based) that will connect to an Oracle 10G database, read some data from it and then connect to a SQL Server database and write the ...
2
votes
1answer
1k views

Connection URl for SQLExpress database using Hibernate

I am using jtds drivers to connect to SQL Server on local using Hibernate I can conect to server using server name: COMP6\SQLEXPRESS Below is my connection properties in hibernate.cfg <property ...
2
votes
1answer
589 views

differences between ms sql microsoft's jdbc drivers and jTDS's driver

What are the differences between each driver? I mean, besides one of them being open-source What are the pros / cons of each one? Which one would you recommend? here's jTDS own opinion on the ...
2
votes
1answer
213 views

is it possible to get the query plan out using jdbc on sql server?

I am using the JTDS driver and I'd like to make sure my java client is receiving the same query plan as when I execute the SQL in Mgmt studio, is there a way to get the query plan (ideally in xml ...
2
votes
3answers
2k views

Using Sybase ASE 12.5.4 with jTDS drivers with JRuby

Problem I am trying to build a small ruby script - which will be run using jruby once a day - to connect to a Sybase ASE 12.5.4 database and perform a complex query. Ultimately I intend to do some ...
2
votes
2answers
780 views

connecting groovy to sql server

I am trying to connect a simple groovy script to the DB. Code: import groovy.sql.Sql class GroovySqlExample2{ static void main(String[] args) { def sql = ...
2
votes
2answers
982 views

SQL Server JBDC Driver comparison

Currently we use jtds for connecting to our SQL Server databases. I've always taken it for granted that we use it due to performance and reliability reasons, however, it's usage pre-dates my ...
1
vote
0answers
53 views

Wrong data type returned for date in jtds.jar

I have a table on MS SQL Server with a column having data type as date. I am using jtds.jar for JDBC connection with DB. I am taking DatabaseMetaData from Connection. While checking columns from ...
1
vote
1answer
81 views

is JTDS driver outdated?

I'm now trying to decide which driver to use to create a DataSource from my JavaEE application to MS SqlServer. A couple of years ago I had good experience with JTDS, and SO answers suggest that JTDS ...
1
vote
0answers
57 views

jtds with SQL Server 2008 R2 - “socket write error”

We moved an old installation to a new hosting partner and now we're getting intermittent (now and then, days apart) "socket write errors" on a jdbc connection from an apache (6.0.20) to an SQL Server ...
1
vote
3answers
177 views

SQL queries to MSSQL contains pauses even with MARS enabled

We are testing JDBC drivers from jTDS and Microsoft, and we are suffering from unwanted pauses in query execution. Our application opens many ResultSets and fetches only a few rows from each. Each ...
1
vote
1answer
250 views

How to set Hibernate with sqlserver&jtds driver in Netbeans

I am trying to set up Netbeans to work with Hibernate using jtds driver to connect to SQLSERVER 2008. The sqlserver 2008 is installed localy, no username or password. This is hibernate.cfg: ...
1
vote
3answers
925 views

jTDS socket hanging with C3P0 connection check (SQL Server 2008 R2)

Thanks in advance for any help! Here is the environment: Java 5 Web application running in Tomcat 6.0.18 on Windows (not sure the version) Database: SQL Server 2008 R2 JDBC Driver: jTDS 1.2.5 ...
1
vote
1answer
70 views

Can I change the 'appName' on an already open JTDS connection?

I'm looking for a way to pass web-application transaction information on to the underlying database process. In my Java code I might have a transactional method ReservationService#search(), which runs ...
1
vote
2answers
200 views

JTDS with absolute path (JDBC connection to an Access MDB File)

I've spent lots of time searching a solution to this, tried Google it, BING it, tried JTDS community but no solution, or maybe I haven't searched enough, nevertheless this is my situation: I have the ...
1
vote
1answer
502 views

SQL server “Lock request time out period exceeded” .. again

I'm having a problem trying to extend the lock timeout in a sql server SP. No matter what I try it keeps throwing "Lock request time out period exceeded". I'm using java + jtds 1.2.2, c3p0 0.9.1 and ...
1
vote
1answer
413 views

JTDS driver not working for Sql Sever 2008R2 and Denali Native SSPI library not loaded. Check the java.library.path system property

I am trying to connect Sql Server Data Base using windows authentication from my application using JTDS driver but i got following error SSO Failed: Native SSPI library not loaded. Check the ...
1
vote
1answer
428 views

class not found error while using jtds in java

I am trying to connect to a sql server using jtds jdbc driver. Following is the code try { Class.forName("net.sourceforge.jtds.jdbc.Driver"); this.conn = ...
1
vote
1answer
116 views

Mock DB connection in jTDS?

Is it possible to mock Sybase DB connection in jTDS? I'd like to do some development on my laptop but don't want to install the whole Sybase ASE. Thank you, Arkadiy.
1
vote
1answer
509 views

Java jTDS Connection Problems Ubuntu Server

From what I have read the correct connection string for a jTDS is: jdbc:jtds:<server_type>://<server>[:<port>][/<database>] I believe the issue is the server name. The ...
1
vote
2answers
2k views

JTDS and JBOSS JDBC Connection Pool Problem, any solution? Maybe a custom ValidConnectionChecker?

I'm facing a weird production problem. Environment is the following: JBOSS 4.0.2 SQL Server 2005 Driver JTDS 1.2.5 From time to time the following szenario occurs. A SQL command fails to Excute ...
1
vote
2answers
526 views

NullPointerException with CallableStatement.getResultSet()

I have a stored proc in SQL Server 2005, which looks like the following (simplified) CREATE PROCEDURE FOO @PARAMS AS BEGIN -- STEP 1: POPULATE tmp_table DECLARE @tmp_table TABLE (...) INSERT ...
1
vote
2answers
914 views

Number of sockets available for a JDBC connection at Windows 2003

My team built a Windows Service in Java that connects to a SQL Server 2005 in a Windows 2003 Server, using pure JDBC (no connection pooling) with the JTDS driver. After a while, the method that opens ...
1
vote
3answers
1k views

jtds No Suitable Driver Exception when running a maven built project

We have a simple spring-hibernate application(console app) where in we have set the classpath in manifest file of the executable jar file. And the app connects to the database using jtds driver, ...
0
votes
0answers
13 views

JDBC:JTDS SQL Server Connection String

I am trying to create a connection to SQL Server From Liferay using a JDBC:JTDS connection string. Its not working. My Instance name is: EC2SQLEXPRESS I am not sure the port, but assume 1433. I have ...
0
votes
1answer
36 views

Playframework-1.2.4 Entity and SQL Server 2000, return 462 records instead of 8800 :S

I have a problem with SQL Server 2000, I has been using jtds-1.2.5, I have 2 connections, Mysql is the principal, but I need access to MSSQL Info. The problem is when I make a "List alumnos = ...
0
votes
0answers
38 views

SQL Server, JTDS causes java.sql.SQLException: Invalid state, the ResultSet object is closed

I am using Tomcat 7, Microsoft SQL Server 2008 RC2 and JTDS driver I am actually using C3P0 as well to try and solve this problem, but it makes no difference at all. I was using Microsoft's driver ...
0
votes
0answers
37 views

jTDS JDBC not throwing exception when it should

I have a problem with the following code using the jTDS JDBC Driver. Everything works, and queries is no problem. But I don`t get an error/exception if the connection is failing. I have tried to enter ...
0
votes
1answer
71 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
203 views

MS SQL Server named instance connection using Spring JDBC Template

All, I am trying to connect SQL Server named instance using Microsoft JDBC Driver as well as jTds. Both were giving different problems . Microsoft Driver issue : Connection URL : ...
0
votes
2answers
148 views

JTDS (Java/MSSQL) - Could not find Stored Procedure

I am using JTDS with Java to connect to a Microsoft SQL database. I am able to connect to the database perfectly. However when I run the code below, I am getting an error "Could not find stored ...
0
votes
1answer
82 views

ResultSet Object is closed - jtds

I am using JTDS to connect to MS-SQL 2005. I am using c3p0 as the DB Connection pool, configured with Spring. I am randomly getting an SQLException: Invalid state, the ResultSet object is closed in ...
0
votes
0answers
89 views

JDBC - JTDS bug ? For columns of type date and time(x)

When I'm trying to get column type from ResultSetMetaData with method getColumnTypeName for types date and time(x) , I'm getting nvarchar. For other types seems it works fine. Is this a bug? With ...
0
votes
2answers
383 views

how to connect sql server using JTDS driver in Android

i am new in android.. i want to connect sql server using JTDS driver. can any one tell me.. thnx in advance...
0
votes
1answer
45 views

Stored Proc slower from application than Management Studio

We have a stored proc which runs pathetically when called from application (Spring - DBCP - jtds) infact timesout after 10 minutes, but runs in 30 seconds when executed from SQL Server Managament ...
0
votes
2answers
196 views

Connecting to external database through telnet

I have a java program that connects to a MS SQL database. The program works perfectly when running through eclipse however I get an error when I run it through AIX: java.sql.SQLException: Network ...
0
votes
1answer
196 views

Connecting to external database using java

I have a java program that connects to a MS SQL database. The program works perfectly when running through eclipse however I get an error when I run it through AIX: java.sql.SQLException: Network ...
0
votes
2answers
323 views

Using windows authentication with sqljdbc.jar

Is it possible to use the windows authentication mode for SQL SERVER database, while using the micro soft provided JDBC drivers? I am using sqljdbc.jar.. the SQLJdbcVersion class file contains this: ...
0
votes
1answer
91 views

Does it necessary to enable the “keepalive” in the JTDS for the performance increase?

How much will performance increase when enabled the config of "keepalive" in JTDS? I reviewed the jtds document today and found one interesting config "sockekeepalive" never noticed before. And did u ...

1 2