Mysqlに同じ名前のフォームの入力を挿入する方法はありますか?私は3つの同じ名前をMySQLのオプションを選択挿入しようとしましたが、すべての1つの列になると、すべてのquestionidがそれ自身のスコアを持っている送信すると、私は3つのquestionid列をmysqlと各列は、ちょうどこのような---->enter image description hereと私はこのような問題がある----->enter image description hereのように各questionidの3つのスコアの列を持っている可能性があります!同じ名前のすべての入力をMysqlに挿入する方法は?
JSPコード:
<form id="result" role="form" class="form-inline" action="mature.htm" method="post">
<select name="score" class="form-control input-lg">
<font>
<option value="1">○</option>
<option value="2">△</option>
<option value="3">×</option></select>
</font>
<font size="5"><select name="score" class="form-control input-lg">
<option value="1">○</option>
<option value="2">△</option>
<option value="3">×</option></select>
</font>
<font size="5"><select name="score" class="form-control input-lg">
<option value="1">○</option>
<option value="2">△</option>
<option value="3">×</option></select>
</font>
エンティティモデル:Result.java
@Column(name="score", length=45)
public String getScore() {
return this.score;
}
public void setScore(String score) {
this.score = score;
}
これは私の休止状態である(作成)DEO:
public void create2(Result e,Result e2)
{
try{
Session s=HibernateUtil.getSessionFactory().getCurrentSession();
s.beginTransaction();
e.setQuestionid("[email protected]");
s.save(e);
s.getTransaction().commit();
Session s2=HibernateUtil.getSessionFactory().getCurrentSession();
s2.beginTransaction();
e2.setQuestionid("l.com");
s2.save(e2);
s2.getTransaction().commit();
}catch(Exception ex){
ex.printStackTrace();
}
}
フォントタグは、 –
のおかげで申し訳ありません、私はそれを逃した! – jason010183333