Archive for the ‘JDBC’ Category

Oracle 9i JDBC Guide   Leave a comment

Oracle9i JDBC Developer’s Guide and ReferenceRelease 2 (9.2) – to get this click on this link or paste this link on the browser address bar. http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96654/toc.htm

Connecting the Java World to Grid-Enabled Databases   Leave a comment

Grid computing is not necessarily a new concept; however, its adoption within the enterprise has given birth to a new concept called enterprise grid computing, which is being embraced by the entire IT industry. Enterprise grid computing aims to consolidate IT resources – including both infrastructure software and applications – and optimize their usage, cutting [...]

Connecting to a Database with JDBC   Leave a comment

// JDBC|Test – complete codepublic class JDBCTest { public static void main(String args[]){ RunDB runDB = new RunDB(); try{ runDB.loadDriver(); runDB.makeConnection(); runDB.buildStatement(); runDB.executeQuery(); }catch(Exception e){ e.printStackTrace(); } }} //RunDBimport java.sql.*; public class RunDB { Connection connection; Statement statement; public void loadDriver() throws ClassNotFoundException{ Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”); } public void makeConnection() throws SQLException { connection= DriverManager.getConnection(“jdbc:odbc:purchaseOrder”) } public [...]

Follow

Get every new post delivered to your Inbox.