Interface | Description |
---|---|
IInsert |
The strategy used to write records to a database.
|
Class | Description |
---|---|
MultiRowPreparedStatementInsert |
Sample Generated SQL:
INSERT INTO tableName (col1, col2, col3) VALUES |
MultiRowStatementInsert |
Sample Generated SQL:
INSERT INTO tableName (col1, col2, col3) VALUES |
MySqlPreparedStatementInsert | |
PreparedStatementInsert |
Sample Generated SQL:
INSERT INTO tableName (col1, col2, col3) VALUES (?, ?, ?) |