正在阅读:Java连接数据库谈Java连接数据库谈

2004-04-07 14:31 出处:CSDN 作者:PaleSting 责任编辑:sdq

  c)      连接到一个MySQL数据库上。。。。

          Connection connection = null ;

  try

  {

    //load the jdbc driver ;

    String driverName = “org.gjt.mm.mysql.Driver”;

    Class.forName(driverName).newInstance();

      //create a connection to the database;

    String serverName = “127.0.0.1”;

    String serverID =  “database”;

    String userName = “hello”;

    String userPsw = “world”;

    String url = “jdbc:mysql ://” + serverName + “/” + serverID ;

    Connection = DriverManager.getConnection(url , userName , userPsw);

  }

  catch(ClassNotFoundException e1)

  {

    //catch could not find database driver exception.

  }

  catch(SQLException e2)

  {

    //catch could not connect to the database exception.

  }

  综合上面的三种数据库连接方式 , 其实大同小异。由于访问不同的数据库和所使用的数据库驱动程序不同,所以导致代码表面上有小小不同,但透过表面看来,内部都是

  1.  加载一个特定的数据库JDBC驱动。

  2.  连接到一个数据库。

  3.  之后,就可以对一个特定的数据库进行特定的操作了。


察看评论详细内容 我要发表评论
作者笔名 简短内容 发表时间
:
键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品