Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
54 views

Java7 sqljdbc4 - SQL error 08S01 on getConnection()

I'm trying to write a really simple GUI app for inserting some records into a database, and reading back some records (nothing fancy, just 1 table with 3 rows, no relations). The source... package ...
1
vote
2answers
810 views

Glassfish/Toplink and sqljdbc.jar retrying forever on broken db-connection

I'm using Glassfish and Toplink together with an MS-SQL-Server, thus sqljdbc4.jar is used for connecting to the database. When the database is not available (DB server is down), the CPU usage rises to ...
0
votes
1answer
209 views

jboss 7 AS datasource for sqlserver

I run jboss in standalone mode and have set my datasource in the standalone.xml to the following: <datasource jndi-name="MyDenaliDS" pool-name="MyDenaliDs_Pool" enabled="true" jta="true" ...
0
votes
1answer
78 views

How is SQL Server's timestamp2 supposed to work in JDBC?

I'm having some trouble trying to use timestamp2 instead of Timestamp in SQL Server 2008. Apparently, rs.getTimestamp has very different behavior between timestamp and timestamp2. However, I can't ...
0
votes
3answers
79 views

Building an MSSQL database with ColdFusion or Java from an “.sql” file?

I have a .sql file that was created using the MS SQL Management Studio Script Wizard. It contains the entire database schema including views, stored procedures, tables, indexes, etc. I’m looking for ...
0
votes
0answers
357 views

sqljdbc : JDBC driver sqljdbc.jar Vs sqljdbc4.jar

I have a query regarding the jars sqljdbc.jar and sqljdbc4.jar which are used to connect to MS SQL Server 2005 for the systems where the JDK version 1.5 & 1.6 respectively. Now I would like to ...
0
votes
0answers
180 views

Does sqljdbc 3.0 support table-valued parameters between Java & SQLServer2008R2?

So we're using stored procs to communicate between our Java app and SQL Server 2008 R2 database. I need to (well want to) pass variable amounts of args into a stored proc (like varargs in Java). ...
0
votes
1answer
674 views

Java + include sqljdbc4.jar for continuous integration server

does anyone know how I can use the sqljdbc4 jar file inside a project but without setting it in the build path of the project inside Eclpise? I store my project in a source control repository and have ...
0
votes
2answers
720 views

SQL Server JDBC: unable to create new native thread

We are using Microsoft's sqljdbc driver 1.2 in combination with Hibernate under Windows. Occasionally we are getting an OutOfMemoryError from the JDBC driver although plenty of memory is still ...