| Author |
Running jdbc methods from my application
|
Jacob Hoda
Greenhorn
Joined: Apr 09, 2004
Posts: 6
|
|
I have a jdbc.class which executes queries etc. I also have an application class. When the app runs I'd like to to execute some methods in the jdbc to perform queries, how do I go about doing this? I know how to call methods but I have to pass the connection paramter which has not been setup in my applicatoin class. Thanks,
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26496
|
|
Jacob, I would recommend having a separate class that handles creating the connection. Then your class containing the JDBC can call it and you don't need to pass the connection around all over.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: Running jdbc methods from my application
|
|
|