can we create a own jdbc driver? how can we create?
Answer / rishabh bhasin
no , we can't create new jdbc driver, there are four driver
1 jdbc/ odbc
2 native driver
3 network protocol driver
4 jdbc net pure driver
| Is This Answer Correct ? | 3 Yes | 2 No |
java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr iver? I get this error at run time.I used oracle10G. I set CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0 \server\jdbc\lib\ojdbc14.jar; I write JDBC PROGRAM like import java.sql.*; class Example { public static void main(String args[]) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); System.out.println("Driver Loaded"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe","system","salmas"); System.out.println("Driver Connected"); Statement st=con.createStatement(); ResultSet rs=st.executeQuery("select * from emp"); while(rs.next()) { System.out.println(rs.getInt(1)); System.out.println(rs.getString(2)); System.out.println(rs.getString(3)); } st.close(); con.close(); } catch(Exception e) { System.out.println(e); } finally { System.out.println("it's finally block executed"); } } }
HI ALL, How to Overcome "OutOfMemoryException"? when I am compiling source having more than 1000 LOC throwing this exception. Can any one give correct answer to my question? thx
If you are truncated using JDBC, how can you that how much data is truncated?
How a driver can be loaded?
How do I insert/update records with some of the columns having NULL value?
How java can be connected to a database?
What is jdbc and why is it required?
How to connect html page to database using jdbc?
What is jdbc servlet?
What are different types of JDBC Drivers?
What types of DataSource objects are specified in the Optional Package?
What is execute(), executeUpdate() and executeQuery() methods?