You can find all kind of programs all over the internet to do this (and more).
Or:
String driver="org.gjt.mm.mysql.Driver"; //or whatever you are using
String url = "jdbc:mysql://yourip:3306/yourdatabase";
Class.forName(driver);
java.sql.Connection connection =
java.sql.DriverManager.getConnection(url,<username>,<password>);

If that doesn't throw exception, you are in pretty good shape :-)
laszlo


Rahadul Kabir wrote:

> I have installed and configured JDBC driver to work with MySql 3.23.47.
> Does anyone know how to test to see that JDBC driver is working
> properly? Is there a test file?
> thanks
>
> --rahad
>
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)
>    http://lists.mysql.com/           (the list archive)
>
> To request this thread, e-mail <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to