JDBC连接大全哦

JDBC连接大全哦

1、Oracle8/8i/9i数据库(thin模式)

Class.forName(“oracle.jdbc.driver.OracleDriver”).newInstance();

String url=”jdbc:oracle:thin:@localhost:1521:orcl”; //orcl为数据库的SID

String user=”test”;

String password=”test”;

Connection conn= DriverManager.getConnection(url,user,password); 

  2、DB2数据库

Class.forName(“com.ibm.db2.jdbc.app.DB2Driver “).newInstance();

String url=”jdbc:db2://localhost:5000/sample”; //sample为你的数据库名

String user=”admin”;

String password=””;

Connection conn= DriverManager.getConnection(url,user,password); 

  3、Sql Server7.0/2000数据库

jtds

jdbc:jtds:sqlserver://localhost:1433/j2eeone

net.sourceforge.jtds.jdbc.Driver

Class.forName(“com.microsoft.jdbc.sqlserver.SQLServerDriver”).newInstance();

String url=”jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb”;

//mydb为数据库

String user=”sa”;

String password=””;

Connection conn= DriverManager.getConnection(url,user,password); 

  4、Sybase数据库

Class.forName(“com.sybase.jdbc.SybDriver”).newInstance();

String url =” jdbc:sybase:Tds:localhost:5007/myDB”;//myDB为你的数据库名

Properties sysProps = System.getProperties();

SysProps.put(“user”,”userid”);

SysProps.put(“password”,”user_password”);

Connection conn= DriverManager.getConnection(url, SysProps); 

  5、Informix数据库

Class.forName(“com.informix.jdbc.IfxDriver”).newInstance();

String url = “jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;

user=testuser;password=testpassword”; //myDB为数据库名

Connection conn= DriverManager.getConnection(url); 

  6、MySQL数据库

Class.forName(“org.gjt.mm.mysql.Driver”).newInstance(); //或者Class.forName(“com.mysql.jdbc.Driver”);

String url =”jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1″

//myDB为数据库名

Connection conn= DriverManager.getConnection(url); 

  7、PostgreSQL数据库

Class.forName(“org.postgresql.Driver”).newInstance();

String url =”jdbc:postgresql://localhost/myDB” //myDB为数据库名

String user=”myuser”;

String password=”mypassword”;

Connection conn= DriverManager.getConnection(url,user,password); 

  8、access数据库直连用ODBC的

Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”) ;

String url=”jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ=”+application.getRealPath(“/Data/ReportDemo.mdb”);

Connection conn = DriverManager.getConnection(url,””,””);

Statement stmtNew=conn.createStatement() ;

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/100641.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • Ubuntu 下 通过ADB 安装Apk和导出手机中的Apk

    Ubuntu 下 通过ADB 安装Apk和导出手机中的Apk一、连接电脑首先确保你的手机打开了调试模式然后输入命令adbdevicesroot@lvi166-CN15S:/home/lvi166#adbdevicesListofdevicesattachedce10171a39a990c00b7e device如果连接成功则会出现你的设备二、确认你要导出的apk包名root@lvi166-CN15S:/hom…

  • C语言中的LARGE_INTEGER

    C语言中的LARGE_INTEGERLARGE_INTEGER是一个union:用于表示一个有符号整数值。结构定义如下typedefunion_LARGE_INTEGER{    struct{             DWORDLowPart,            LONG HighPart             };   LONGLONGQuadPart}LARGE_INTEGE

  • windows/linux 下iozone参数详解

    windows/linux 下iozone参数详解iozone是一个文件系统的benchmark工具,可以测试不同的操作系统中文件系统的读写性能。可以测试Read,write,re-read,re-write,readbackwards,readstrided,fread,fwrite,randomread,pread,mmap,aio_read,aio_write等等不同的模式下的硬盘的性能。测试的时候请注意…

    2022年10月25日
  • word2010求和符号上下标的打法_求和符号只有下标是什么意思

    word2010求和符号上下标的打法_求和符号只有下标是什么意思想输入的公式:只要在公式旁边继续加文字就会变成这样:解决方法只能在office上实现不能在wps上先输入Alt+=,得到下图在里面进行输入输入\below,空格键按两次在得到的大框里输入\sum空格键按一次在总和符号旁边输入\above空格键两次得到想要的符合。转载于https://jingyan.baidu.com/article/a17d528558c3bbc199c8f25d.html…

  • currentstyle 织梦_dede currentstyle属性完美解决方案

    问题一、dede让channelartlist标签支持currentstyle属性完美解决打开include\taglib\channelartlist.lib.php找到$pv->Fields[‘typeurl’]=GetOneTypeUrlA($typeids[$i]);在此行代码下方增加以下代码:if($typeids[$i][‘id’]==$refObj->TypeL…

  • db2 timestampdiff

    db2 timestampdiff要将字符串转换成日期或时间值,可以使用:TIMESTAMP(‘2002-10-20-12.00.00.000000’)TIMESTAMP(‘2002-10-2012:00:00’)DATE(‘2002-10-20′)DATE(’10/20/2002′)TIME(’12:00:00’)TIME(‘12.00.00’)TIMESTAMP()、DATE(…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号