J PRAKASH76

Greenhorn
+ Follow
since Jun 07, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by J PRAKASH76

hi friend,
it is easy to connect to a microsoft's databases (mssql server, ms-access)..
use JTURBO driver to connect to the database (it is a TYPE IV driver) u can download the driver from www.jturbo.com
and code is
Connection con=null;
Class.forname("com.ashna.jturbo.driver.Driver");
con=DriverManger.getConnection("jdbc:JTurbo://servername:1433/databasename","username","password");
u can get the connection using this code..
JP
22 years ago