* [ 1675206 ] Error when I try Merge Entity
This commit is contained in:
parent
1be2c0f910
commit
0b55e13845
|
|
@ -889,8 +889,9 @@ public final class VAccountDialog extends CDialog
|
||||||
int i = 0;
|
int i = 0;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
java.sql.Statement stmt = DB.createStatement();
|
java.sql.PreparedStatement stmt = DB.prepareStatement(sql.toString(),
|
||||||
i = stmt.executeUpdate(sql.toString());
|
ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE, null);
|
||||||
|
i = stmt.executeUpdate();
|
||||||
stmt.close();
|
stmt.close();
|
||||||
}
|
}
|
||||||
catch (SQLException e)
|
catch (SQLException e)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue