在jbuilder里面的tools->configure libraries,选中JBUILDER ,点击添加NEW,增加一个名称为ORACLE 的library,然后,选择class12.jar文件所在的位置,就可以了
然后在project里面project properties里面找到required libraries,增加刚才建立的ORACLE的library就可以了
最好在default project properties里面的required librarie也增加这个library,然后就可以建立你的数据库连接了public class DBAccess {
    private final String OracleDriver ="oracle.jdbc.driver.OracleDriver";
    private String sConnStr ="jdbc:oracle:thin:@idb:1521:cbsd";
    private Connection conn = null;
    private Statement stmt = null;
    private ResultSet rs = null;public DBAccess(String userName,String passWord) {
    try {
        Class.forName(SQLDriver).newInstance();
        conn = DriverManager.getConnection(sConnStr, userName, passWord);
        stmt = conn.createStatement();
    }
    catch(Exception ex) {
        ex.printStackTrace();
    }
}
good luck!
good luck!

解决方案 »

  1.   

    我找到的JBUILDER里面的帮助:
    Adding a JDBC driver to Jbuilder
    After installing your JDBC driver following the manufacturer's instructions, use the steps below to set it up for use with Jbuilde
    Note: Uninstalled drivers are red on the Drivers list in the Connection Property dialog box and cannot be selected for use in JBuilder. You must install them according to the manufacturer first before setting them up in JBuilder.
    Creating the .library and .config files
    There are three steps to adding a database driver to JBuilder:
    1. Creating a library file which contains the driver's classes, typically a JAR file, and any other auxiliary files such as documentation and source.
    2. Deriving a .config file from the library file which JBuilder adds to its classpath at start-up. 
    3. Adding the new library to your project, or to the Default project if you want it available for all new projects.
    The first two steps can be accomplished in one dialog box:
    1. Open JBuilder and choose Tools|Enterprise Setup
    2. Click the Database Drivers tab in the Enterprise Setup dialog box.The Database Drivers tab displays .config files for all the currently defined database drivers.
    3. Click Add to add a new driver, then New to create a new library file for the driver. The library file is used to add the driver to the required libraries list for projects.
    Note: You can also create a new library under Tools|Configure Libraries, but since you would then have to use Enterprise Setup to derive the .config file, it is simpler to do it all here.
    4. Type a name and select a location for the new file in the Create New Library dialog box.
    5. Click Add, and browse to the location of the driver. You can select the directory containing the driver and all it's support files, or you can select just the archive file for the driver. Either will work. JBuilder will extract the information it needs.
    6. Click OK to close the file browser. This displays the new library at the bottom of the library list and selects it.
    7. Click OK. JBuilder creates a new .library file in the JBuilder /lib directory with the name you specified (for example, InterClient.library). It also returns you to the Database Drivers page which displays the name of the corresponding .config file in the list which will be derived from the library file (for example, InterClient.config).
    8. Select the new .config file in the database driver list and click OK. This places the .config file in the JBuilder /lib/ext directo
    9. Close and restart JBuilder so the changes to the database drivers will take effect, and the new driver will be put on the JBuilder classpath
    Important: If you make changes to the .library file after the .config file has been derived, you must re-generate the .config file using Enterprise Setup, then restart JBuilder.
    Adding the JDBC driver to project
    Projects run from within JBuilder use only the classpath defined for that project. Therefore, to make sure the JDBC driver is available for all new projects that will need it, define the library and add it to your default list of required libraries. This is done from within JBuilder using the following steps:
    1. Start JBuilder and close any open projects.
    2. Choose Project|Default Project Properties
    3. Select the Required Libraries tab on the Paths page, and click Add
    4. Select the new JDBC driver from the library list, and click OK
    5. Click OK to close the Default Project Properties dialog box.
    Note: You can also add the JDBC driver to an existing project. Just open the project, then choose Project|Project Properties and use the same process as above.