could anyone tell me how to set up a connection with a code i created in java to a sql table called album
please let me know how to setup drivers etc.
i am an absolute novice in jdbc
Printable View
could anyone tell me how to set up a connection with a code i created in java to a sql table called album
please let me know how to setup drivers etc.
i am an absolute novice in jdbc
See if you can find this helpful, http://www.kitebird.com/articles/jdbc.html. It's actually for MySQL but the same applies to most (if not all) JDBC connectivity. In fact, you just have to have Connetion interface to receive a specific connection or vendor specific. Statement is also an interface so wouldn't worry on anything vendor specific.
Quote:
Originally Posted by nebulom
It's a nice artical on JDBC. thanks. I think ther is enough details to learn about JDBC connection. Isn't it?