01 | /********************************************************* |
03 | This program shows how to close connections. |
05 | To use this program, you need to create a table |
06 | emp_tbl by using the following command: |
08 | SQL> create table emp_tbl ( |
09 | 2 empno integer primary key, |
10 | 3 ename varchar(64) not null ); |
14 | *********************************************************/ |
21 | import oracle.jdbc.pool.OracleDataSource; |
23 | class CloseConnection { |
24 | public static void main( String args[ ] ) throws SQLException { |
25 | String user = "C##user_id" ; |
26 | String password = "password" ; |
27 | String database = "20.185.147.112:1521/xe" ; |
30 | OracleDataSource ods = new OracleDataSource( ); |
31 | ods.setURL ( "jdbc:oracle:thin:@" + database ); |
33 | ods.setPassword( password ); |
34 | Connection conn = ods.getConnection( ); |
38 | FileInputStream stream = new FileInputStream ( "p2.txt" ); |
39 | InputStreamReader iStrReader = new InputStreamReader( stream ); |
40 | BufferedReader reader = new BufferedReader ( iStrReader ); |
41 | String sql = reader.readLine( ); |
42 | if ( sql == null ) sql = "" ; |
43 | else sql = sql.trim( ); |
47 | Statement stmt = conn.createStatement( ); |
48 | System.out.println( "<font color='#3366CC'><h4>" + sql + "</h4></font>" ); |
49 | if ( stmt.execute( sql ) ) { |
50 | ResultSet rset = stmt.getResultSet( ); |
52 | while ( rset.next( ) ) |
53 | System.out.println( rset.getString( 1 ) ); |
60 | catch ( SQLException e ) { |
61 | System.out.println( e ); |
64 | catch ( IOException e ) { System.out.println( e ); } |
|