library management system using jdbc source code
#1

jdb library management system the requirement is loan the book return the book borrow the book
Reply
#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: database jdbc, searching source code for library books using jdbc, how to take seminor in jdbc, seminar on jdbc with abstract, jdbc code for project on online shopping, rmi jdbc complete code, library management system project 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)

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

Forum Jump: