怎样把dbhelpersql.dll这个文件引用进来
发布网友
发布时间:2023-09-26 15:05
我来回答
共1个回答
热心网友
时间:2024-12-11 21:03
举个例子
连接数据库查询表的相关语句:
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
Connection conn=DriverManager.getConnection("jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=mytest","sa","123");
Statement stmt=conn.createStatement();
ResultSet rs=stmt.executeQuery("select * from userinfo");
while(rs.next())