1 How to write my own sdbc driver
3 Pre implementation steps
4 - search all occurances of skeleton and replace them to a name which you prefer
6 1. Implement a class called driver or modify the existing skeleton -> have a look at SDriver.?xx
7 2. Implement a class called connection -> have a look at SConnection.?xx
8 3. Have a look at the DatabaseMetaData -> see SDatabaseMetaData.cxx
9 The methods which should be implemented at least are
15 4. You need a statement to show/access some data -> have a look at SStatement.cxx
16 -> especially executeQuery()
18 5. The ResultSet: without you see nothing -> look at SResultSet.cxx
19 6. The ResultSetMetaData needed to get some information about what are waiting for us
20 -> look at SResultSetMetaData.cxx
22 7. The prepared statement is the last class we have to implement now
23 -> you have to allow statements like "SELECT * FROM table WHERE id = ?"
25 8. congratulations you have now implement your own driver :-)