library management system using jdbc source code
#2
library management system using jdbc source code

// 使用JDBC直接建立数据库连接
import java.sql.*;
public class Jdbc{

public static void main(String[] args){

try{

Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
String url ="jdbc:microsoftConfusedqlserver://127.0.0.1:1433";
Connection con=DriverManager.getConnection(url,"admin","xyz" );
con.setCatalog("bookTest");
Statement stmt = con.createStatement();
ResultSet rs=stmt.executeQuery("select * from bookInfo");
while(rs.next()){

System.out.println(rs.getString(1)+" "+rs.getString(2)
+" "+rs.getFloat(3)+" "+rs.getString(4));

}
rs.close();
stmt.close();

}catch(Exception e){

e.printStackTrace();

}

}

}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: source code atm simulation in java jdbc, seminar on jdbc conclusion, jdbc program for student details, difference between rowset resultset jdbc, database jdbc, jdbc program for library management system, library management system in java using jdbc,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Messages In This Thread
library management system using jdbc source code - by Guest - 10-06-2015, 07:10 PM
RE: library management system using jdbc source code - by seminar report asees - 11-06-2015, 03:21 PM

Possibly Related Threads...
Thread Author Replies Views Last Post
  srs on textile management system 2 2,457 25-12-2018, 08:03 PM
Last Post: Selva lakshmi
  dfd for alumni management system 1 2,838 23-09-2018, 12:00 PM
Last Post: Guest
  free download source code of online college magazine 5 17,884 29-06-2018, 10:09 AM
Last Post: Guest
  opengl source code for butterfly 3 3,282 14-05-2018, 08:57 AM
Last Post: Akshatha k
  program code of solar tracking system using 8051 microcontroller 6 23,401 03-05-2018, 09:30 PM
Last Post: Guest
  ice cream parlour management system in vb source code 4 5,291 04-04-2018, 11:58 PM
Last Post: vprk77
  matlab code for vehicle tracking using unscented kalman filter 3 16,923 26-03-2018, 08:57 PM
Last Post: fodayj
  source code in php for online training and placement cell management 1 6,688 23-03-2018, 09:06 AM
Last Post: ritzi
  free download college website project in html with source code 2 4,623 24-02-2018, 10:46 AM
Last Post: Guest
  matlab code for facial expression recognition using frequency domain 1 2,687 19-02-2018, 06:03 PM
Last Post: Guest

Forum Jump: