大家看看是怎么回事??
public void InsertUser_BaseInfo(
String UserID,
String RealName,
String Date,
String slctSex,
String txtNative,
String txtApp,
String txtNation,
String txtIDCard,
String txtPhone,
String txtAddress,
String txtMaster,
String txtEdctLevel,
String txtSchool) {
String InsertUserBaseInfoSQL =
"Insert Into USER_BASEINFO(USER_ID,REALNAME,BIRTHDAY,SEX,NATIVE,APPEARANCE,NATION,IDCARD,PHONE,ADDRESS,MASTER,EDCTLEVEL,GRADUATESCHOOL) "
+ "VALUES('"
+ UserID
+ "','"
+ RealName
+ "','"
+ Date
+ "','"
+ slctSex
+ "','"
+ txtNative
+ "','"
+ txtApp
+ "','"
+ txtNation
+ "','"
+ txtIDCard
+ "','"
+ txtPhone
+ "','"
+ txtAddress
+ "','"
+ txtMaster
+ "','"
+ txtEdctLevel
+ "','"
+ txtSchool
+ "')";
conn.setRS(InsertUserBaseInfoSQL); }
}