我在自己的电脑上建立了一个JSP+mysql数据库的项目
String driverName="com.mysql.jdbc.Driver";
String userName="root";
String userPasswd="123456";
String dbName="test";
String tableName="t1";
String url="jdbc:mysql://localhost:3306/"+dbName+"?user="+userName+"&password="+userPasswd+"&useUnicode=true&characterEcoding=GB2312";
Class.forName(driverName).newInstance();
Connection conn=DriverManager.getConnection(url);
Statement stmt=conn.createStatement();
String sql="select * from t1";
ResultSet rs=stmt.executeQuery(sql);
.........................................
然后我把这个项目(连同mysql数据库)拷贝到另一台电脑上,如果这台电脑上没有安装mysql数据库管理系统,该项目能在这台电脑上运行吗?还有mysql数据库应该放在哪个磁盘上?这样jdbc:mysql://localhost:3306/才能连接上它。