Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JtdsSqlServerJdbcConnection.java - jTDS JDBC Connection Example
How to create a JDBC connection to SQL Server database using the jTDS JDBC driver? I want to see a Java program example.
✍: FYIcenter.com
If you have a SQL Server running on your local computer
with TCP/IP protocol turned on and listening on port 1433,
you can use the following example, JtdsSqlServerJdbcConnection.java,
to learn how to create a JDBC connection:
// Copyright (c) 2016 FYIcenter.com
import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
// Example of jTDS JDBC connection to SQL Server
public class JtdsSqlServerJdbcConnection {
public static void main(String [] args) throws Exception {
// Build the jTDS JDBC connection URL
String url = "jdbc:jtds:sqlserver://localhost;user=sa;password=fyicenter";
Connection con = DriverManager.getConnection(url);
System.out.println("JDBC connection and database server information:");
DatabaseMetaData meta = con.getMetaData();
System.out.println("Database Product Name: "
+ meta.getDatabaseProductName());
System.out.println("Database Product Version: "
+ meta.getDatabaseProductVersion());
System.out.println("Driver Name: "
+ meta.getDriverName());
System.out.println("Driver Version: "
+ meta.getDriverVersion());
System.out.println("JDBC Major Version: "
+ meta.getJDBCMajorVersion());
System.out.println("JDBC Minor Version: "
+ meta.getJDBCMinorVersion());
// Close the connection
con.close();
}
}
You can compile and run the above example in a command window as shown below:
C:\fyicenter>\local\jdk-1.8.0\bin\javac -cp C:\local\jtds-1.3.1\jtds-1.3.1.jar JtdsSqlServerJdbcConnection.java C:\fyicenter>\local\jdk-1.8.0\bin\java -cp .;C:\local\jtds-1.3.1\jtds-1.3.1.jar JtdsSqlServerJdbcConnection JDBC connection and database server information: Database Product Name: Microsoft SQL Server Database Product Version: 12.00.2000 Driver Name: jTDS Type 4 JDBC Driver for MS SQL Server and Sybase Driver Version: 1.3.1 JDBC Major Version: 3 JDBC Minor Version: 0
The output confirms that:
⇒ JtdsSqlServerJdbcUrl.java - jTDS JDBC Connection URL Example
⇐ SQL Server SQLEXPRESS Service for jTDS Test
2017-01-29, ∼3224🔥, 0💬
Popular Posts:
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.6.1-src.zip...
How to download and install iText7-Core-7.1.4.zip? iText7-Core-7.1.4.zip is the binary package of iT...
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the ...
A stream buffer is a stream-based representation of an XML infoset in Java. Stream buffers are desig...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...