admin 管理员组

文章数量: 887021


2024年1月14日发(作者:linux挂载点大小分配)

各种数据库驱动

数据库名称

Mysql

下载地址

/products/connector/j/

说明

Shipped. But need to

download the latest for

MySQL 4.1 or higher.

/project/?group_id=33Oracle

291

software/tech/java/sqlj_jdbc/

Included.

/proIncluded. Support

SQL Server by jTDS ject/?group_iMicrosoft SQL Server

d=33291(6.5, 7, 2000 and 2005)

Postgres

SAP DB

SyBase by jTDS

/Included 7.3 JDBC 3

tp:///sapIncluded.

_db_ uded. Support Sybase

(10, 11, 12)

t/各种驱动的连接方法

1. MySQL() ;

e( "" );

cn=nection( "jdbc:mysql:

//MyDbComputerNameOr IP:3306/myDatabaseName", sUsr, sPwd );

2. PostgreSQL() ;

e( "" );

cn=nection( "jdbc:postgresql:

//MyDbComputerNameOrIP/myDatabaseName", sUsr, sPwd );

(/ip/deploy/database/oracle9i/)

;

e("Driver");

cn=nection("jdbc:oracle:

thin:MyDbComputerNameOrIP:1521:ORCL", sUsr, sPwd );

4. Sybase() ;

e( "ver" );

cn =

nection( "jdbc:sybase:Tds:MyDbComputerNameOrIP:2638", sUsr, sPwd );

//(Default-Username/Password: "dba"/"sql")

5. Microsoft SQLServer() ;

e( "" );

cn =

nection( "jdbc:jtds:sqlserver://MyDbComputerNameOrIP:1433/master", sUsr, sPwd );

6. Microsoft SQLServer() ;

e( "verDriver" );

cn =

nection( "jdbc:microsoft:sqlserver://MyDbComputerNameOrIP:1433;databaseName=master", sUsr, sPwd );

7. ODBC

e( "bcDriver" );

Connection cn = nection( "jdbc:dbc:" + sDsn, sUsr,

sPwd );

2 e("2Driver");

String url="jdbc:db2://192.9.200.108:6789/SAMPLE"

cn = nection( url, sUsr, sPwd );

由于access并不是作为一项服务运行,所以url的方法对他不适用。access可以通过odbc,也可以通过服务器映射路径的形式 找到.mdb文件,参见/Access/

一、连接各种数据库方式速查表

下面罗列了各种数据库使用JDBC连接的方式,可以作为一个手册使用。

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

e("Driver").newInstance();

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

String user="test";

String password="test";

Connection conn=

nection(url,user,password);

2、DB2数据库

e("2Driver

").newInstance();

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

String user="admin";

String password="";

Connection conn=

nection(url,user,password);

3、Sql Server7.0/2000数据库

e("verDriver").newInstance();

String

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

//mydb为数据库

String user="sa";

String password="";

Connection conn= nection(url,user,password);

4、Sybase数据库

e("ver").newInstance();

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

Properties sysProps = perties();

("user","userid");

("password","user_password");

Connection conn= nection(url, SysProps);

5、Informix数据库

e("ver").newInstance();

String url =

"jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;

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

Connection conn= nection(url);

6、MySQL数据库

e("").newInstance();

String url

="jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"

//myDB为数据库名

Connection conn= nection(url);

7、PostgreSQL数据库

e("").newInstance();

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

String user="myuser";

String password="mypassword";

Connection conn=

nection(url,user,password);

8、access数据库直连用ODBC的

e("bcDriver") ;

String url="jdbc:odbc:Driver={MicroSoft Access Driver

(*.mdb)};DBQ="+lPath("/Data/");

Connection conn = nection(url,"","");

Statement stmtNew=Statement() ;

二、JDBC连接MySql方式

下面是使用JDBC连接MySql的一个小的教程

1、查找驱动程序

MySQL目前提供的java驱动程序为Connection/J,可以从MySQL官方网站下载,并找到文件,此驱动程序为纯java驱动程序,不需做其他配置。

2、动态指定classpath

如果需要执行时动态指定classpath,就在执行时采用-cp方式。否则将上面的.jar文件加入到classpath环境变量中。

3、加载驱动程序

try{

e();

n(Success loading Mysql Driver!);

}catch(Exception e)

{

n(Error loading Mysql Driver!);

tackTrace();

}

4、设置连接的url

jdbc:mysql://localhost/databasename[?pa=va][&pa=va]


本文标签: 连接 数据库 驱动程序 文件 找到