• Java常用数据库连接方式


    MySQL:
     String Driver="com.mysql.jdbc.Driver"; //驱动程序
     String URL="jdbc:mysql://localhost:3306/db_name"; //连接的URL,db_name为数据库名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).new Instance();
     Connection con=DriverManager.getConnection(URL,Username,Password);
     Microsoft SQL Server:
     1)
     String Driver="com.microsoft.jdbc.sqlserver.SQLServerDriver"; //连接SQL数据库的方法
     String URL="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db_name"; //db_name为数据库名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).new Instance(); //加载数据可驱动
     Connection con=DriverManager.getConnection(URL,UserName,Password); //
     2)
     String Driver="com.microsoft.sqlserver.jdbc.SQLServerDriver"; //连接SQL数据库的方法
     String URL="jdbc:sqlserver://localhost:1433;DatabaseName=db_name"; //db_name为数据库名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).new Instance(); //加载数据可驱动
     Connection con=DriverManager.getConnection(URL,UserName,Password);
     Sysbase:
     String Driver="com.sybase.jdbc.SybDriver"; //驱动程序
     String URL="jdbc:Sysbase://localhost:5007/db_name"; //db_name为tb数据可名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).newInstance();
     Connection con=DriverManager.getConnection(URL,Username,Password);
     Oracle(用thin模式):
     String Driver="oracle.jdbc.driver.OracleDriver"; //连接数据库的方法
     String URL="jdbc:oracle:thin:@loaclhost:1521:orcl"; //orcl为数据库的SID
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).newInstance(); //加载数据库驱动
     Connection con=DriverManager.getConnection(URL,Username,Password);
     PostgreSQL:
     String Driver="org.postgresql.Driver"; //连接数据库的方法
     String URL="jdbc:postgresql://localhost/db_name"; //db_name为数据可名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).newInstance();
     Connection con=DriverManager.getConnection(URL,Username,Password);
     String Driver="org.postgresql.Driver"; //连接数据库的方法
     DB2:
     String Driver="com.ibm.db2.jdbc.app.DB2.Driver"; //连接具有DB2客户端的Provider实例
     //String Driver="com.ibm.db2.jdbc.net.DB2.Driver"; //连接不具有DB2客户端的Provider实例
     String URL="jdbc:db2://localhost:50000/db_name"; //db_name为数据可名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).newInstance();
     Connection con=DriverManager.getConnection(URL,Username,Password);
     Informix:
     String Driver="com.informix.jdbc.IfxDriver";
     String URL="jdbc:Informix-sqli://localhost:1533/db_name:INFORMIXSER=myserver"; //db_name为数据可名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).newInstance();
     Connection con=DriverManager.getConnection(URL,Username,Password);
     JDBC-ODBC:
     String Driver="sun.jdbc.odbc.JdbcOdbcDriver";
     String URL="jdbc:odbc:dbsource"; //dbsource为数据源名
     String Username="username"; //用户名
     String Password="password"; //密码
     Class.forName(Driver).newInstance();
     Connection con=DriverManager.getConnection(URL,Username,Password);

  • 相关阅读:
    gdb 调试(查看运行时数据)(五)
    Kendo UI开发教程(23): 单页面应用(一)概述
    Kendo UI开发教程(24): 单页面应用(二) Router 类
    Kendo UI开发教程(26): 单页面应用(四) Layout
    Kendo UI开发教程(25): 单页面应用(三) View
    Kendo UI开发教程(27): 移动应用开发简介
    [置顶] Kendo UI开发教程: Kendo UI 示例及总结
    web端、android端的文件上传
    [置顶] 关于本博客 http://www.imobilebbs.com
    hdu4707 Pet
  • 原文地址:https://www.cnblogs.com/spinsoft/p/2570999.html
Copyright © 2020-2023  润新知