sqljdbc Questions

3

Solved

I'm just starting to build Java apps (I do have .NET experience) and I was trying to build a small test app whose whole code is this : package com.company; import com.microsoft.sqlserver.jdbc.SQL...
Cordle asked 3/11, 2013 at 19:55

3

Solved

This is my first Java application and I'm completely inexperienced with Java and NetBeans. I have been trying to connect to sql and get some records for 2 days. The problem is about jdbc driver, ...
Better asked 24/8, 2013 at 16:30

3

Solved

Trying to connect my java web application with MS-SQL server using sqljdbc41 for jdk 1.8. Here is the database connection code- Connection connection; String url = "jdbc:sqlserver://localhost:14...
Tripping asked 12/9, 2015 at 8:5

1

Solved

This is a follow up question of Hibernate version mismatch in WildFly 10.0. For completeness, restating the problem briefly. I have 2 projects, one is a normal java project (with maven): core, and...
Bascinet asked 24/3, 2017 at 10:47

6

Solved

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" use-...
Phenacaine asked 6/12, 2011 at 13:3

2

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 ...
Majesty asked 28/9, 2011 at 10:15

2

Solved

I used this code to create a connection to SQL Server. String connectionUrl = "jdbc:sqlserver://IP:1433;" + "databaseName=db;user=db;password=pwd"; Connection con = null; try { // Establish th...
Therapeutic asked 4/9, 2013 at 18:7

2

Solved

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...
Snell asked 24/1, 2012 at 14:57

1

Been using net.sourceforge.jtds.jdbc.Driver as my driver from MSSQL for all my applications. I had trouble with performance in a prepared statement, and learned that sendStringParametersAsUnicode=f...
Aromaticity asked 31/1, 2012 at 7:9
1

© 2022 - 2024 — McMap. All rights reserved.