Fixed INSERT Javadoc
This commit is contained in:
parent
5d1a98b49d
commit
074c3055d4
@ -35,12 +35,11 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table, field1, field2)
|
||||
* .values(value1, value2)
|
||||
|
||||
@ -39,7 +39,7 @@ package org.jooq;
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table, field1, field2)
|
||||
* .values(value1, value2)
|
||||
|
||||
@ -49,7 +49,7 @@ import java.util.Map;
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table, field1, field2)
|
||||
* .values(value1, value2)
|
||||
|
||||
@ -49,7 +49,7 @@ import org.jooq.impl.Executor;
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table, field1, field2)
|
||||
* .values(value1, value2)
|
||||
|
||||
@ -41,7 +41,7 @@ import org.jooq.exception.DataAccessException;
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* TableRecord<?> record =
|
||||
* create.insertInto(table, field1, field2)
|
||||
|
||||
@ -41,7 +41,7 @@ import java.util.Collection;
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* TableRecord<?> record =
|
||||
* create.insertInto(table, field1, field2)
|
||||
|
||||
@ -39,7 +39,7 @@ package org.jooq;
|
||||
* This type is used for the {@link Insert}'s alternative DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table)
|
||||
* .set(field1, value1)
|
||||
|
||||
@ -44,7 +44,7 @@ import org.jooq.impl.Executor;
|
||||
* This type is used for the {@link Insert}'s alternative DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table)
|
||||
* .set(field1, value1)
|
||||
|
||||
@ -43,7 +43,7 @@ import org.jooq.impl.Executor;
|
||||
* This type is used for the {@link Insert}'s DSL API.
|
||||
* <p>
|
||||
* Example: <code><pre>
|
||||
* Factory create = new Factory();
|
||||
* Executor create = new Executor(config);
|
||||
*
|
||||
* create.insertInto(table, field1, field2)
|
||||
* .values(value1, value2)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user