- 浏览: 1904 次
- 性别:
- 来自: 广州
最新评论
-
shgaoyuhai:
请问一下,如果dbf文件里有删除标示的语句是隐藏的,直接执行s ...
java连接dbf
文章列表
数据库连接类:
package dbfconnection;
import java.sql.*;
public class connection {
Connection con = null;
Statement st = null;
ResultSet rs = null;
public connection() throws SQLException {
getConnection();
}
public Connection getConnection() throws SQLException {
...
- 2009-09-07 20:54
- 浏览 1904
- 评论(1)