插入错误: 列名或所提供值的数目与表定义不匹配。SQLException: 代码如下,望高手指正,大榭!! 10

classbeifen{beifen(){}voidBF(){StringdriverName="com.microsoft.sqlserver.jdbc.SQLServ... class beifen {
beifen(){}
void BF(){
String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver";
String url="jdbc:sqlserver://localhost:1433;DatabaseName=tongxunlu";
String user="sa";
String password="123";

Connection conn=null;
Statement stmt=null;
Statement pstm=null;

try{
Class.forName(driverName);
conn=DriverManager.getConnection(url,user,password);
stmt=conn.createStatement();

System.out.println("连接成功"+conn.getMetaData().getURL());

}
catch (SQLException se) {

se.printStackTrace();
}
catch (ClassNotFoundException cnfe) {

cnfe.printStackTrace();
}

String command;
try{
command="CREATE TABLE nobbbba(姓名 char(20),电话 char(20),邮件 char(30))";
pstm=conn.createStatement();
pstm.executeUpdate(command);
System.out.println("建表成功!");
BufferedReader in=new BufferedReader(new FileReader("mytxl.txt"));

while(in.readLine()!=null){

String line=in.readLine();
command="INSERT INTO nobbbba VALUES("+line+")";
pstm.executeUpdate(command);

}

System.out.println("备份成功!");
}catch(SQLException ex){
System.out.println("SQLException:");
while(ex!=null){
System.err.println(ex.getMessage());
ex=ex.getNextException();
}
}catch(IOException ex){
System.out.println("IOException:");
System.out.println(ex.getMessage());
}
}
}
注:
mytxl.txt文件的格式,我试过很多种,都是同样的错误提示。
展开
 我来答
heart675
2011-12-29 · TA获得超过180个赞
知道答主
回答量:257
采纳率:0%
帮助的人:168万
展开全部
列名或所提供值的数目与表定义不匹配。 源错误: 行 55: cmd.CommandType 把它数目定义正确!! 1.目的表的表字段数据类型是否与插入的字段类型
追问
怎样设置mytxl.txt文件内容形式呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式