import java.sql.*;
class DBConnectTest {
public static void main(String args[]) {
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url="jdbc:odbc:sqlserver";
Connection connection=DriverManager.getConnection(url);
Statement statement = connection.createStatement();
String sql="SELECT * FROM test";
ResultSet rs = statement.executeQuery(sql);
String tt;
while (rs.next()) {
System.out.print("姓名:" + rs.getString("name"));
System.out.println(" 年龄:" + rs.getString("age"));
}
rs.close();
connection.close();
}
catch(Exception ex){
System.out.println(ex);
System.exit(0);
}
}
}
----------------解决方案--------------------------------------------------------
你没配置对ODBC数据源,或者你ODBC数据源的名称打错了
检查一下吧
----------------解决方案--------------------------------------------------------
谢谢你啊,是没配置数据源.呵呵~~~
----------------解决方案--------------------------------------------------------
可是如果我想将数据保存为xml格式的文件,我该怎么写啊
xml格式
<table name="">
<fieldname>fieldvalue</fieldname>
</table>
----------------解决方案--------------------------------------------------------