当前位置: 技术问答>java相关
数据库连接问题!!!
来源: 互联网 发布时间:2015-04-20
本文导语: com.borland.dx.sql.dataset.database与com.borland.dx.sql.dataset.tabledataset要怎么连接? 或许有其他的方法? 比如我要连接access数据库,该怎么做? | 你必需在添加一个QueryDataSet控件,然后设置QueryDataSe...
com.borland.dx.sql.dataset.database与com.borland.dx.sql.dataset.tabledataset要怎么连接?
或许有其他的方法?
比如我要连接access数据库,该怎么做?
或许有其他的方法?
比如我要连接access数据库,该怎么做?
|
你必需在添加一个QueryDataSet控件,然后设置QueryDataSet的query属性。
设置好后把jdbTable的dataset属性指向设置好的QueryDataSet控件。
设置好后把jdbTable的dataset属性指向设置好的QueryDataSet控件。
|
使用java.sql.*的包;
给你一个程序看看:import java.sql.*;
import java.io.*;
public class JdbcTest
{
public static void main (String args [])
throws SQLException, IOException
{
System.out.println ("Loading Oracle driver");
try
{
Class.forName ("oracle.jdbc.driver.OracleDriver");
}
catch (ClassNotFoundException e)
{
System.out.println ("Could not load the driver");
}
System.out.println ("Connecting to the local database");
Connection conn = DriverManager.getConnection("jdbc:oracle:oci8:@", "cuigy", "cuigy");
Statement stmt = conn.createStatement ();
ResultSet rs = stmt.executeQuery ("select * from firsttable");
while (rs.next ())
{
System.out.println (rs.getString (1));
System.out.println (rs.getString (2));
}
}
}
给你一个程序看看:import java.sql.*;
import java.io.*;
public class JdbcTest
{
public static void main (String args [])
throws SQLException, IOException
{
System.out.println ("Loading Oracle driver");
try
{
Class.forName ("oracle.jdbc.driver.OracleDriver");
}
catch (ClassNotFoundException e)
{
System.out.println ("Could not load the driver");
}
System.out.println ("Connecting to the local database");
Connection conn = DriverManager.getConnection("jdbc:oracle:oci8:@", "cuigy", "cuigy");
Statement stmt = conn.createStatement ();
ResultSet rs = stmt.executeQuery ("select * from firsttable");
while (rs.next ())
{
System.out.println (rs.getString (1));
System.out.println (rs.getString (2));
}
}
}