当前位置: 技术问答>java相关
师傅们,帮我看看这段代码把,我用jb运行时他只向数据库中添加了两条记录。
来源: 互联网 发布时间:2015-11-10
本文导语: 师傅们,帮我看看这段代码把,我用jb运行时他只向数据库中添加了两条记录。但是我单步执行时能把SQLStatement数字中的记录全都添加进去,我用jdk1.4也试过了,都一样。 package buildtables; import java.sql.*; /** * Title: ...
师傅们,帮我看看这段代码把,我用jb运行时他只向数据库中添加了两条记录。但是我单步执行时能把SQLStatement数字中的记录全都添加进去,我用jdk1.4也试过了,都一样。
package buildtables;
import java.sql.*;
/**
*
*
*
*
* @author unascribed
* @version 1.0
*/
public class BuildTables {
public static void main(String[] args){
String driver="sun.jdbc.odbc.JdbcOdbcDriver";
String url="jdbc:odbc:technical_library";
String name="guest";
String password="guest";
String[] SQLStatement={"CREATE TABLE online_resoutces (pub_id int,name char(48),url char(50))",
"INSERT INTO online_resoutces "+"VALUES(1,'Wrox Home Page','http://www.wrox.com')",
"INSERT INTO online_resoutces "+"VALUES(2,'JavaSoft Home Page','http://www.javasoft.com')",
"INSERT INTO online_resoutces "+"VALUES(3,'Imaginary Home Page','http://www.imaginary.com')"
};
try{
Class.forName(driver);
Connection connection=DriverManager.getConnection(url,name,password);
Statement statement=connection.createStatement();
for(int i=0;i
package buildtables;
import java.sql.*;
/**
*
Title:
*
Description:
*
Copyright: Copyright (c) 2002
*
Company:
* @author unascribed
* @version 1.0
*/
public class BuildTables {
public static void main(String[] args){
String driver="sun.jdbc.odbc.JdbcOdbcDriver";
String url="jdbc:odbc:technical_library";
String name="guest";
String password="guest";
String[] SQLStatement={"CREATE TABLE online_resoutces (pub_id int,name char(48),url char(50))",
"INSERT INTO online_resoutces "+"VALUES(1,'Wrox Home Page','http://www.wrox.com')",
"INSERT INTO online_resoutces "+"VALUES(2,'JavaSoft Home Page','http://www.javasoft.com')",
"INSERT INTO online_resoutces "+"VALUES(3,'Imaginary Home Page','http://www.imaginary.com')"
};
try{
Class.forName(driver);
Connection connection=DriverManager.getConnection(url,name,password);
Statement statement=connection.createStatement();
for(int i=0;i
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
站内导航:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!