Is it need install anything? And if need , I want to get a full step to follow. And a simple connection coding. Thank you
|
|
See this tutorial. In short:
You can also use Of course you will need to download the |
|||||||||||
|
|
First you have to download MySql Driver, and add it into your java library or class path. Then try this,
|
|||
|
At the first line the "pagkage" have underlined, please let me know to solve it? package com.stardeveloper.example; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; |
||||
|
|
I'd refer to this: http://dev.mysql.com/doc/refman/5.0/en/connector-j.html It'll have all the examples you need to connect to MySQL using Connector-J. |
|||
|
|
|
Class.forName("com.MySql.jdbc.Driver"); The "Driver" is it using followinf step to make out? •Click Control Panel in the Windows OS. •Click Administrative Tools •Click Data Sources (ODBC) •In the form that appears, select Add •In the next form select the driver from the list – for example SQL Server |
|||
|
|
|
You can try using spring datasource. http://static.springsource.org/spring/docs/1.2.x/api/org/springframework/jdbc/datasource/package-summary.html I have found it convenient. Also, if it's a large scale application consider connection pooling too. |
|||
|
|