主题:eclipse连接orcale
public class DB {
String host="127.0.0.1";
String dbname="lang";
String port="1521";
String url="jdbc:oracle:thin:@"+host+":"+port+dbname;
String username="scott";
String paword="tiger";
public Connection Getcon(){
Connection con=null;
try {
Class.forName( "oracle.jdbc.OracleDriver");
con=DriverManager.getConnection("url,username,paword");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return con;
}
如果我要查的是整张表的话是不是我在查找的时候是返回一个list对象?具体应该怎么写?主函数里面怎么写?