connection = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test", "root", "zhuyi");

connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","zhu... connection = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test", "root", "zhuyi");想问一下"jdbc:mysql://localhost:3306/test"中的test是数据库名还是表名?如果test是数据库名的话,而test这个数据库有多个表,而只需要操作其中的一个表,怎么办? 展开
 我来答
micro0369
2012-08-14 · TA获得超过1.2万个赞
知道大有可为答主
回答量:9250
采纳率:85%
帮助的人:4081万
展开全部
test当然是数据库名,

给你一个例子:

驱动程序名
String driver = "com.mysql.jdbc.Driver";

// URL指向要访问的数据库名scutcs
String url = "jdbc:mysql://127.0.0.1:3306/scutcs";

// MySQL配置时的用户名
String user = "root";

// Java连接MySQL配置时的密码

String password = "root";

try {
// 加载驱动程序

Class.forName(driver);

// 连续数据库
Connection conn = DriverManager.getConnection(url, user, password);

if(!conn.isClosed())
System.out.println("Succeeded connecting to the Database!");

// statement用来执行SQL语句
Statement statement = conn.createStatement();

// 要执行的SQL语句
String sql = "select * from student";

结果集
ResultSet rs = statement.executeQuery(sql);
System.out.println("-----------------");
System.out.println("执行结果如下所示:");
System.out.println("-----------------");
System.out.println(" 学号" + "\t" + " 姓名");
System.out.println("-----------------");
String name = null;
while(rs.next()) {
选择sname这列数据
name = rs.getString("sname");

// 首先使用ISO-8859-1字符集将name解码为字节序列并将结果存储新的字节数组中。

// 然后使用GB2312字符集解码指定的字节数组

name = new String(name.getBytes("ISO-8859-1"),"GB2312");

// 输出结果
System.out.println(rs.getString("sno") + "\t" + name);
}
rs.close();
conn.close();
} catch(ClassNotFoundException e) {
System.out.println("Sorry,can`t find the Driver!");
e.printStackTrace();
} catch(SQLException e) {
e.printStackTrace();
} catch(Exception e) {
e.printStackTrace();
}
}
}
lqiang890329
2012-08-14 · TA获得超过211个赞
知道小有建树答主
回答量:503
采纳率:0%
帮助的人:169万
展开全部
test是你放的文件夹名字吧 我记得表名好像不是这么弄的吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式