🛠️ Code cleanup & added many new features #1
@ -209,7 +209,7 @@ public class MySQLConnection {
|
||||
* @param tableName The name of the table you want to delete a row from
|
||||
* @return the deletion manager
|
||||
*/
|
||||
public DeletionManager delete(String tableName) {
|
||||
public DeletionManager deleteFrom(String tableName) {
|
||||
return new DeletionManager(this, tableName);
|
||||
}
|
||||
|
||||
|
@ -149,7 +149,7 @@ public abstract class SQLTable {
|
||||
* @return the deletion manager
|
||||
*/
|
||||
public DeletionManager delete() {
|
||||
return connection.delete(tableName());
|
||||
return connection.deleteFrom(tableName());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user