Hi
i am in the process of installing and cofiguring MySQL connector. I need help as to how to start using the software? I have installed the '.tar.gz' file under Debian Linux.
Can someone out there, help me with starting the jdbs connection and a li'l advise on how to use it will be greatly appreciated.
I tried the URL mentioned on the MySQL site's documentation --jdbc:mysql//[hostname:portname]/[datebase name] ---- unfortunately, it doesn't work.
HELP....
Thanx
-
MySQL Connector/J (2 messages)
- Posted by: The Monarch
- Posted on: December 01 2003 07:21 EST
Threaded Messages (2)
- MySQL - Connecting with JDBC - dynamic content by steve souza on December 01 2003 07:31 EST
- Tomcat Site by Eric Goode on December 01 2003 16:34 EST
-
MySQL - Connecting with JDBC - dynamic content[ Go to top ]
- Posted by: steve souza
- Posted on: December 01 2003 07:31 EST
- in response to The Monarch
These worked for me:
com.mysql.jdbc.Driver
jdbc:mysql://localhost/databasename?user=root
Remember you have to have the mysql jdbc jar available to your server. If you download my war at http://www.fdsapi.com it has the capability to sort any ResultSet by clicking on the html tables column header. The demo works with MySQL.
steve - http://www.fdsapi.com - The easiest way to generate dynamic xml and html. -
Tomcat Site[ Go to top ]
- Posted by: Eric Goode
- Posted on: December 01 2003 16:34 EST
- in response to steve souza
This is a pretty good article to get you started.
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasource-examples-howto.html
-Nelm