Tagged Questions

0
votes
3answers
71 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 …
5
votes
4answers
182 views

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

Hi All, 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 …
2
votes
1answer
48 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 …
0
votes
1answer
152 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 …
0
votes
1answer
89 views

JDBC-driver / SQL Server recompiles my prepared statements all the time when they contain ROW_NUMBER()

I've noticed that prepared statements containing ROW_NUMER() code often gets recompiled although their SQL-code hasn't changed. (example from book Inside Microsoft SQL Server 2008: T-SQL Querying): …
1
vote
1answer
100 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 = …
1
vote
3answers
428 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
43 views

Is there an alternative to ParameterMetaData that can tell you valid parameter names

MSSQL has an interesting JDBC inconsistency. Regarding the parameters on a stored procedure, when you access their names, they are referenced with an @ sign in front of them (the way they are declared …
2
votes
2answers
170 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 …
0
votes
2answers
179 views

Using JTDS driver

Hi Everyone I just want to know your opinion. 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 …
1
vote
2answers
837 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 …
2
votes
3answers
487 views

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

Hi, 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) …
0
votes
5answers
2k views

java : non-static variable cannot be referenced from a static context Error

the following code is generating an error on the variable con2 saying "non-static variable con2 cannot be referenced from a static context Error." I googled for a resolution and they are suggesting …
0
votes
3answers
1k views

SQL Server connection management in Tomcat 6

We are having trouble with a Java web application running within Tomcat 6 that uses JDBC to connect to a SQL Server database. After a few requests, the application server dies and the in the log …
1
vote
2answers
445 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 2 next
15 30 50 per page