Hi,
What is wrong with this code? I want to update database with this code.
The bean code:
public void UpdateNieuws() {
try{
db.connect();
String sql = "Update Nieuws set Nieuwsid '"+nieuwsid+"' " +
"Titel ='"+titel+"', Content ='"+content+"', auteur='"+auteur+"'"+
"datum='"+datum+"', nieuwstype ='"+nieuwstype+"'"+
"where Titel ='"+titel+"';";
db.query(sql);
}
catch (Exception e) {System.out.print("error");}
The JSP code is:
<jsp:useBean id="updatenieuws" class="bean.Nieuws" scope="request"/>
<jsp:setProperty name="updatenieuws" property="*"/>
<% updatenieuws.setTitel(titels); %>
<% updatenieuws.UpdateNieuws(); %>
What is wrong with this code? I want to update database with this code.
The bean code:
public void UpdateNieuws() {
try{
db.connect();
String sql = "Update Nieuws set Nieuwsid '"+nieuwsid+"' " +
"Titel ='"+titel+"', Content ='"+content+"', auteur='"+auteur+"'"+
"datum='"+datum+"', nieuwstype ='"+nieuwstype+"'"+
"where Titel ='"+titel+"';";
db.query(sql);
}
catch (Exception e) {System.out.print("error");}
The JSP code is:
<jsp:useBean id="updatenieuws" class="bean.Nieuws" scope="request"/>
<jsp:setProperty name="updatenieuws" property="*"/>
<% updatenieuws.setTitel(titels); %>
<% updatenieuws.UpdateNieuws(); %>