cosmetic changes

This commit is contained in:
Jörg Prante 2022-02-11 18:14:27 +01:00
parent 83a12913cf
commit 436ae935b8

View file

@ -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.