目前我正在做一个医院管理系统项目。我有两张表医生和病人,并在他们之间建立了一个链接表访问。医生表和病人表的主键分别是访问表的外键。我可以从我的代码更新医生表。每当向患者表中插入一条记录时,都会检查医生表以确定分配的医生是否存在,如果医生存在,则将其插入访问表中。为此,我在患者表上创建了一个触发器。现在,每当我尝试注册患者时,患者表都会更新,但代码会抛出一条MySQLException
消息“列计数与第 1 行的值计数不匹配”。
代码
this.stmt=this.mycon.createStatement();
String query_add_patient="insert into patients values ('"+nic+"','"+name+"','"+address+"','"+city+"',"+age+",'"+dob+"','"+telephone+"');";
String query_select_employees="select * from employees where employee_type='Doctor' and employee_qualification='"+doctor+"'";
ResultSet rs=this.stmt.executeQuery(query_select_employees);
if(!rs.next()) {
JOptionPane.showMessageDialog(this, "This Doctor is not available in this facility!!!","Admin Error",JOptionPane.ERROR_MESSAGE);
return false;
}
rs.first();
String pattern = "yyyy-m-d";
SimpleDateFormat format = new SimpleDateFormat(pattern);
String enic=rs.getString("employee_nic");
System.out.println(enic);
String query="insert into Visits (patient_nic,employee_nic) values ("+nic+","+enic+")";
this.stmt.executeUpdate(query_add_patient);
closeConnection();
openConnection();
this.stmt=mycon.createStatement();
this.stmt.executeUpdate(query);
return true;
这里的“插入访问”语句会导致问题。我试图关闭并再次打开连接,但没有奏效。我的访问表的结构是
访问
patient_nic (varchar(45)) FK --> patient.patient_nic
employee_nic (varchar(45)) FK --> employee-->employee_nic