-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDBAexecute.java
65 lines (56 loc) · 1.72 KB
/
DBAexecute.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.nt.conn;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Scanner;
public class DBAexecute {
public static void main(String arg[]) throws Exception {
Connection con=null;
Statement st=null;
ResultSet rs=null;
boolean flag=false;
Scanner sc=null;
String query=null;
try {
sc=new Scanner(System.in);
if(sc!=null) {
System.out.println("Enter id:");
query=sc.nextLine();
}
Class.forName("oracle.jdbc.driver.OracleDriver");
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","system","password");
st=con.createStatement();
// String query="select * from student where id="+Sid;
System.out.println(query);
flag=st.execute(query);
if(flag)
{
System.out.println("select query");
rs=st.getResultSet();
while(rs.next()) {
System.out.println(rs.getInt(1)+" "+rs.getString(2)+" "+rs.getString(3));
}
}
else
{
System.out.println("non select");
System.out.println(st.getUpdateCount());
}
}//close try
catch (SQLException se){ se.printStackTrace(); }
catch (ClassNotFoundException e) { e.printStackTrace(); }
catch (Exception e) { e.printStackTrace(); }
finally {
try { if(rs!=null) rs.close();}
catch(SQLException e) {e.printStackTrace();}
try { if(st!=null) st.close();}
catch(SQLException e) {e.printStackTrace();}
try { if(con!=null) con.close();}
catch(SQLException e) {e.printStackTrace();}
try { if(sc!=null) sc.close();}
catch(Exception e) {e.printStackTrace();}
}//close final;
}
}