永发信息网

mysql中我建了一张表 如下:create table t_user (id int not null auto_inrcement,username varchar(20) not)

答案:2  悬赏:30  手机版
解决时间 2021-04-22 18:35
  • 提问者网友:爱了却不能说
  • 2021-04-22 00:10

mysql中我建了一张表 如下:

create table t_user

(id int not null auto_inrcement,

username varchar(20) not null,

userpwd varchar(20)not null);

然后jsp做了一个注册页面:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP 'register.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

</head>

<body>
<form action="servlet/RegisterServlet" method="post">
<table>
<tr>
<td>用户名:</td>
<td><input type="text" id="user" name="user" /></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" id="pwd" name="pwd" /></td>
</tr>
<tr>
<td>确认密码:</td>
<td><input type="password" id="pwd2" name="pwd2" /></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="注册" />
<input type="reset" value="注销" />
</td>
</tr>
</table>
</form>
</body>
</html>
在调试时出现Column count doesn't match value count at row 1(列数不匹配的值为1的行计数)

不知道怎么修改 请各位大虾帮帮忙!!!!!!
最佳答案
  • 五星知识达人网友:有你哪都是故乡
  • 2021-04-22 00:42
把你sql操作的相关java代码贴出来啊!不过这种通常是在做insert操作的时候少了一列,比如:你的表现在是三列,但是你只插入两列的数据insert into t_user(id,username,userpwd ) values(1,"username");这样就会报这种错误。
全部回答
  • 1楼网友:渊鱼
  • 2021-04-22 01:45
你把servlet里面的代码贴出来看看
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯