1 package jdbcapplication; 2 import java.sql.*; 3 public class Updateinfo 4 { 5 Connection cnt; 6 PreparedStatement pstm; 7 String driver,url; 8 String qry="update emp set ename='Sumit', esal=21000,ejob='Manager' where eid=103"; 9 Updateinfo() 10 { 11 driver="com.mysql.jdbc.Driver"; 12 url="jdbc:mysql://localhost/bhupesh"; 13 try 14 { 15 cnt=DriverManager.getConnection (url,"root","ashok"); 16 pstm=cnt.prepareStatement(qry); 17 pstm.executeUpdate(); 18 System.out.println("Updation Sucessfull Done"); 19 cnt.close(); 20 } 21 catch (SQLException ex) { 22 System.out.println("Error : "+ex.getMessage()); 23 } 24 } 25 public static void main(String args[]) 26 { Updateinfo demo=new Updateinfo(); 27 } 28 } |
Computer Science :: 11th/12th, Computer Engineering :: Degree/Diploma, Coding Concept ( C, C++ & JAVA Programming, JDBC Concept, DBMS - SQL Concept, Data Structure, Communication & Network Concept.
PREPARED UPDATE STATEMENTS
Subscribe to:
Posts (Atom)
-
1) Workbook - A workbook is like a book and consists worksheets. 2) Worksheet - A worksheet is working area consists rows and columns. By...
-
Programmingway: SSC ICT PAPER PATTERN : INFORMATION COMMUNICATION TECHNOLOGY (41) (E) (NEW COURSE) NOTE: - (i) All questions are compu...
-
Choose Eklavya, for Computer Education वाह रे जिंदगी, एक साल में बहुत कुछ दिखाया है तूने..!!
No comments:
Post a Comment