Changed update to updateTo
This commit is contained in:
parent
6b2862a64b
commit
6b82120e17
@ -154,7 +154,7 @@ public class MySQLConnection {
|
||||
* @param tableName The name of the table
|
||||
* @return Update de.gnmyt.SQLToolkit.manager
|
||||
*/
|
||||
public UpdateManager update(String tableName) {
|
||||
public UpdateManager updateTo(String tableName) {
|
||||
return new UpdateManager(this, tableName);
|
||||
}
|
||||
|
||||
|
@ -132,7 +132,7 @@ public abstract class SQLTable {
|
||||
* @return the update manager
|
||||
*/
|
||||
public UpdateManager update() {
|
||||
return connection.update(tableName());
|
||||
return connection.updateTo(tableName());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user