cosmetic changes
This commit is contained in:
parent
83a12913cf
commit
436ae935b8
1 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ public interface Database extends Supplier<Database> {
|
||||||
*/
|
*/
|
||||||
SqlInsert toInsert(String sql);
|
SqlInsert toInsert(String sql);
|
||||||
|
|
||||||
SqlInsert toInsert( Sql sql);
|
SqlInsert toInsert(Sql sql);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a SQL "select" statement for further manipulation and execution.
|
* Create a SQL "select" statement for further manipulation and execution.
|
||||||
|
@ -36,7 +36,7 @@ public interface Database extends Supplier<Database> {
|
||||||
*/
|
*/
|
||||||
SqlSelect toSelect(String sql);
|
SqlSelect toSelect(String sql);
|
||||||
|
|
||||||
SqlSelect toSelect( Sql sql);
|
SqlSelect toSelect(Sql sql);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a SQL "update" statement for further manipulation and execution.
|
* Create a SQL "update" statement for further manipulation and execution.
|
||||||
|
@ -51,7 +51,7 @@ public interface Database extends Supplier<Database> {
|
||||||
*/
|
*/
|
||||||
SqlUpdate toUpdate(String sql);
|
SqlUpdate toUpdate(String sql);
|
||||||
|
|
||||||
SqlUpdate toUpdate( Sql sql);
|
SqlUpdate toUpdate(Sql sql);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a SQL "delete" statement for further manipulation and execution.
|
* Create a SQL "delete" statement for further manipulation and execution.
|
||||||
|
@ -66,7 +66,7 @@ public interface Database extends Supplier<Database> {
|
||||||
*/
|
*/
|
||||||
SqlUpdate toDelete(String sql);
|
SqlUpdate toDelete(String sql);
|
||||||
|
|
||||||
SqlUpdate toDelete( Sql sql);
|
SqlUpdate toDelete(Sql sql);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a DDL (schema modifying) statement for further manipulation and execution.
|
* Create a DDL (schema modifying) statement for further manipulation and execution.
|
||||||
|
|
Loading…
Reference in a new issue