Java code to connect DB2 Type 4 driver db2jcc.jar

JAVA sample code to connect to DB2 Database using Type 4 Driver

The below sample code shows the simple way of making connection to a DB2 Server Database exists on a remote machine with out installing any db2 client on your machine. But all we need to have is Type 4 drivers to make this connection which we can use by pointing to the db2jcc.jar and db2jcc_license_cu.jar.
All we need to do is point the java class path to find this jars, in case of eclipse users configure the build path and these 2 jars as external jars from the path they located to the project.   change the Host name, port, user name and password like details in the below program and run accordingly.

Syntax for the connection string : 
 DriverManager.getConnection
                 ("jdbc:db2j:net://<HOSTNAME>:<Port>/<Database name>,"<User name>","<Password>");

Sample connection string :
 DriverManager.getConnection
                 ("jdbc:db2j:net://nc184120.tivlab.austin.ibm.com:50001/CDSDB","db2inst1","db2inst1");

The following is the sample code.... 

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class Java2DB2 {
public static void main(String[] args)
{
try
{
// load the DB2 Driver
Class.forName("com.ibm.db2.jcc.DB2Driver");
// establish a connection to DB2
Connection db2Conn =
DriverManager.getConnection
("jdbc:db2j:net://nc184120.tivlab.austin.ibm.com:50001/CDSDB","db2inst1","db2inst1");
// use a statement to gather data from the database
Statement st = db2Conn.createStatement();
String myQuery = "SELECT * FROM CDSSCHEMA.ACL_ADMIN";
// execute the query
ResultSet resultSet = st.executeQuery(myQuery);
// cycle through the resulSet and display what was grabbed
while (resultSet.next())
{
String name = resultSet.getString("USER_NAME");
String id = resultSet.getString("USER_ID");
System.out.println("User Name: " + name);
System.out.println("User ID: " + id);
System.out.println("-------------------------------");
}
// clean up resources
resultSet.close();
st.close();
db2Conn.close();
}
catch (ClassNotFoundException cnfe)
{
cnfe.printStackTrace();
}
catch (SQLException sqle)
{
sqle.printStackTrace();
}
}
}


Happy DB2 connectivity :)
Reference : [1]


2 comments to "Java code to connect DB2 Type 4 driver db2jcc.jar"

  • Krishna గారూ...,

    నమస్కారం. క్రొత్తగా నేను హారం ప్రచార బాధ్యతను తీసుకున్నాను. కాబట్టి హారం గురించి
    ఓ నాలుగు మాటలు చెప్పుకుందామని మీ బ్లాగు తలుపు తడుతున్నాను. హారం ను మీరు చూడాలంటే ఈ లింకు పైన నొక్కండి. హారం ప్రతి ఐదారు
    నిమిషాలకు మీ బ్లాగునుంచి టపాలను సేకరించి చూపిస్తుంది. అంతే కాక మీరు,
    మనతోటి బ్లాగర్లు వ్రాసిన టపాలను గానీ వ్యాఖ్యలను చూసుకోవడం చాలా సులభం. హారంలో వ్యాస రచయితల పేర్లు, వ్యాఖ్యాతల పేర్ల పైన క్లిక్ చేసి సులభంగా వారి వారి వ్యాసాలను,వ్యాఖ్యలను చూసికొనే వీలుంది.

    తాజా టపాలనే కాక బ్లాగుల్లో లభ్యమయ్యే జ్ఞానాన్ని వివిధవర్గాలగా క్రోడీకరించి, గత నాలుగు సంవత్సరాలుగా
    తెలుగు తల్లి నోటినుంచి రాలిన ముత్యాలను గుదుగుచ్చి మీ ముందుంచుతుంది. ఈ ప్రయత్నంలో
    హారం ప్రస్తుతానికి ఆధ్యాత్మికం, పద్య సాహిత్యం, సాంకేతికం, హాస్యం, పాటలు,సినిమాలు, బొమ్మలు,సంగీతం, కవితలు, బాలసాహిత్యం, వంటలు మొదలైన వర్గాలుగా క్రోడీకరించి చూపిస్తుంది. .

    మీ సౌకర్యాన్ని బట్టి వీలును బట్టి ఓ సారి దర్శించండి. నచ్చితే వాడండి. ఇంకా నచ్చితే మీబ్లాగులో హారం లింకు ను వుంచి ప్రోత్సహించండి. హారం లింకు ఇక్కడ నుండి సంగ్రహించి మీ బ్లాగులో వుంచవచ్చు. అభిప్రాయాలను దయచేసి ఇక్కడ తెలుపండి . టపాకు ఏమాత్రం సంబంధం లేని వ్యాఖ్య వ్రాసినందుకు క్షమించండి.

    - హారం ప్రచారకులు.

  • Hi krishna,

    Liked ur article, but I'm using JNDI through servlet to lookup for the context name from server.xml and context.xml and in that i've used url as 'url="jdbc:db2://IP:port/DBname' but is there any way to replace the url with 'url="jdbc:db2://port/DBname'. And does this change makes the JDBC driver from type-2 to type-4, I've to use type-4 driver. Please help.

Post a Comment

Whoever writes Inappropriate/Vulgar comments to context, generally want to be anonymous …So I hope U r not the one like that?
For lazy logs, u can at least use Name/URL option which doesn’t even require any sign-in, The good thing is that it can accept your lovely nick name also and the URL is not mandatory too.
Thanks for your patience
~Krishna(I love "Transparency")

Popular Posts

Enter your email address:

Buffs ...

Tags


Powered by WidgetsForFree