Registry / database / jtds
library1.3.1javamavenunverified

jTDS is a 100% pure Java JDBC 3.0 driver for Microsoft SQL Server and Sybase ASE.

<dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <version>1.3.1</version> </dependency>
INSTALL
IMPORT
SIG · JTDS
J
jtds
databasejavav1.3.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Driver
net.sourceforge.jtds.jdbc.Driver

Minimal example registering jTDS driver and connecting to SQL Server.

import net.sourceforge.jtds.jdbc.Driver; import java.sql.Connection; import java.sql.DriverManager; public class JtdsExample { public static void main(String[] args) throws Exception { Driver driver = new Driver(); DriverManager.registerDriver(driver); String url = "jdbc:jtds:sqlserver://localhost:1433/dbname"; try (Connection conn = DriverManager.getConnection(url, "user", "pass")) { System.out.println("Connected: " + conn); } } }
Debug
Known issues
gotchajTDS 1.3.1 is the latest stable release; no active development since 2018.
fix
Consider using Microsoft's official JDBC driver for newer SQL Server features.
affects: >=1.3.0
Upgrade
Version history
1.3.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
Resources
jtds — mvn dependency:get jtds · libregistry