D
delphiasp
Unregistered / Unconfirmed
GUEST, unregistred user!
1、我是第一次直接来打开mysql的,不用jdbc-odbc,
在打开数据库o的时候,没办法打开啊。
程序如下:
public void openConnection()
{
theDataSource="jdbc:mysql://localhost/o";
theUser="root";
thePassword="";
try{
Class.forName("org.gjt.mm.mysql.Driver");
theConnection=DriverManager.getConnection(theDataSource,theUser,thePassword);
theStatus.setText("Status:OK");
}
catch(Exception e)
{
// handleException(e);
}
}
不知是什么错误,
我估计是错在Class.forName("org.gjt.mm.mysql.Driver");
或者theDataSource="jdbc:mysql://localhost/o";
大虾能不能给出一个例子?
2、另外请问下如何加载一个sql server的驱动程序,
然后连接数据库。
在打开数据库o的时候,没办法打开啊。
程序如下:
public void openConnection()
{
theDataSource="jdbc:mysql://localhost/o";
theUser="root";
thePassword="";
try{
Class.forName("org.gjt.mm.mysql.Driver");
theConnection=DriverManager.getConnection(theDataSource,theUser,thePassword);
theStatus.setText("Status:OK");
}
catch(Exception e)
{
// handleException(e);
}
}
不知是什么错误,
我估计是错在Class.forName("org.gjt.mm.mysql.Driver");
或者theDataSource="jdbc:mysql://localhost/o";
大虾能不能给出一个例子?
2、另外请问下如何加载一个sql server的驱动程序,
然后连接数据库。