黑马程序员技术交流社区

标题: 大婶们过来看看我连接MySql数据库的代码哪里有问题呢 [打印本页]

作者: zrc203    时间: 2015-9-9 21:00
标题: 大婶们过来看看我连接MySql数据库的代码哪里有问题呢
  1. package com.itheima.test;

  2. import java.sql.Connection;
  3. import java.sql.DriverManager;
  4. import java.sql.Statement;

  5. public class DbTest {
  6.         String driver = "com.mysql.jdbc.Driver";
  7.         String url = "jdbc:mysql://127.0.0.1:3306/student";
  8.         String user = "root";
  9.         String password = ""; //这里报错
  10.         try{
  11.         Class.forName(driver);
  12.         Connection conn = DriverManager.getConnection(url, user, password);
  13.         if(!conn.isClosed())
  14.         System.out.println("Succeeded connecting to the Database!");
  15.         Statement statement = conn.createStatement();
  16.         }catch(Exception e){
  17.                 e.printStackTrace();
  18.         }

  19.         }
  20. }
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2