Hi i getting trouble executing this Updatequery:
"UPDATE "
+ " SET firstname =?, "
+ " lastname =?, "
+ " company =?, "
+ " department =?, "
+ " legalform =? "
+ " WHERE cid = '"+cid+"'";
On my MySQL Workbench it wroks fine, but i cannot execute it with JDBC
using executeUpdate
Is it generaly possible using MySQL Connector/J executing "one" Update Statement
and changing multiple Colums values?
"UPDATE "
+ " SET firstname =?, "
+ " lastname =?, "
+ " company =?, "
+ " department =?, "
+ " legalform =? "
+ " WHERE cid = '"+cid+"'";
On my MySQL Workbench it wroks fine, but i cannot execute it with JDBC
using executeUpdate
Is it generaly possible using MySQL Connector/J executing "one" Update Statement
and changing multiple Colums values?