当前位置:  技术问答>java相关

哪们英文好,帮忙翻一下,在线等,50分

    来源: 互联网  发布时间:2015-07-27

    本文导语:  我下了个驱动,JDBC的帮助看不懂 Three steps are required to use the IDS JDBC Driver in a Java program: 1) Composing a Connection URL, 2) Initialize the driver, 3) Making a connection. A typical Connection URL for looks like this:     ...

我下了个驱动,JDBC的帮助看不懂

Three steps are required to use the IDS JDBC Driver in a Java program: 1) Composing a Connection URL, 2) Initialize the driver, 3) Making a connection. A typical Connection URL for looks like this: 

    "jdbc:ids://ip_address:12/conn?dsn='MyDB'&uid='MyName'&pwd='sECreT'"
where ip_address:12 is the address and port number of the IDS Server. The default port number is 12, but it can be changed in the "idss.ini" file. 'MyDB' is the ODBC data source name (or Oracle server alias, see next topic). 'MyName' is the user ID of the target database. 'sECreT' is the password of the database user ID. For a complete reference on the syntax of the Connection URL, please refer to Section 4.4 and 4.5 of the IDS Server User's Guide. 

There are several ways to initialize the driver and make a connection. If you like to use the DriverManager.getConnection() method, you can use the following: 

    Class.forName("ids.sql.IDSDriver").newInstance();
    Connection conn = DriverManager.getConnection(url,"scott", "tiger");
******"scott", "tiger"****这两个单词是说什么的举个例子吧好吗?
If you like to use the Driver.connect() method, you can create a JDBC Connection instance like this: 

    Driver drv = (Driver)
        Class.forName("ids.sql.IDSDriver").newInstance();
    Connection conn = drv.connect(url, prop);
There is a much simpler alternative looks like the following. The only drawback is that this requires you to include the "IDS_Server_directoryclasses" directory in the CLASSPATH environment before compiling. 

    Driver drv = new ids.sql.IDSDriver();
    Connection conn = drv.connect(url, prop);//prop什么意思?

Using java2.sql.IDSDriver
This driver is for applets using JDBC 2.1 features runing in Version 4 browsers. When writing applets using this driver, first import the java2.sql.* package instead of java.sql.*. Then initialize the driver class java2.sql.IDSDriver instead of ids.sql.IDSDriver. The syntax of the Connection URL remains the same. For example,

    import java2.sql.*;  // Instead of import java.sql.*;
    ...

    Driver drv = new java2.sql.IDSDriver();
    Connection conn = drv.connect(url, prop);
You must add archive "IDS_Serverclassesjdk12drv-v4browsers.zip" to the CLASSPATH environment variable before compiling your applet.

Using j102.sql.IDSDriver
This driver is for applets using JDBC 2.1 features runing in Version 3 browsers. When writing applets using this driver, first import the j102.sql.* package instead of java.sql.*. Then initialize the driver class j102.sql.IDSDriver instead of ids.sql.IDSDriver. The syntax of the Connection URL remains the same. For example,

    import j102.sql.*;  // Instead of import java.sql.*;
    ...

    Driver drv = new j102.sql.IDSDriver();
    Connection conn = drv.connect(url, prop);
You must add archive "IDS_Serverclassesjdk12drv-v3browsers.zip" to the CLASSPATH environment variable before compiling your applet.


|
oral是服务名

|
Connection conn = DriverManager.getConnection(url,"scott", "tiger");
******"scott", "tiger"****这两个单词是说什么的举个例子吧好吗?
scott数据库用户名,tiger是密码
prop是一个参数,包含了连接数据库的一些信息

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 网站英文/中文域名字符集即网站英文/中文域名可以包含哪些字符
  • 请问哪里有SCJP的的中文教程275课程,我要同英文对照起来看,英文太难了
  • Windows 8.1中文英文预览版系统下载及功能改进
  • 用java读中文linux中的文件是正确的,用java读英文linux版本中的文件是乱码,如何使英文linux读出的文件数据也是中文的?
  • HTML 英文颜色名称全集列表
  • 英文不是很好,为了考SCJP,好多地方看英文书,概念什么的比较模糊,哪有详细的中文的Java语言教程呀?最好和SCJP想符合的,别告诉我《Think in Java》呀!那本书我烦透了!
  • 我在虚拟机上装了个英文版的linux,安装一个英文版的QQ发生以下错误
  • 论坛 iis7站长之家
  • 請問:Ubuntu 10.10 如何設定修改密碼時,密碼必須包含至少一個英文字母和一個非英文字母?
  • 我用了truetype字体,可一些英文字体没了。
  • 怎样将redhat9的欢迎界面改成英文的?
  • 英文版windows下我开发的程序用不了,怎么办?
  • 中英文网站系统 HongCMS
  • 中英文翻译库
  • MapInfo中文版的汉化臭死了,谁有英文版的?
  • 如何将安装成中文环境的red hat 改回到英文
  • redhat 怎样将英文系统转为中文系统?
  • 我装了Redhat英文版怎么安装中文输入法
  • 让英文linux系统显示中文
  • 英文书籍
  • 英文环境下,如何使gtk控件显示中文


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3