Uses of Interface
org.springframework.jdbc.core.simple.SimpleJdbcInsertOperations
Packages that use SimpleJdbcInsertOperations
Package
Description
Simplification layer for table inserts and stored procedure calls.
-
Uses of SimpleJdbcInsertOperations in org.springframework.jdbc.core.simple
Classes in org.springframework.jdbc.core.simple that implement SimpleJdbcInsertOperationsModifier and TypeClassDescriptionclassA SimpleJdbcInsert is a multi-threaded, reusable object providing easy insert capabilities for a table.Methods in org.springframework.jdbc.core.simple that return SimpleJdbcInsertOperationsModifier and TypeMethodDescriptionSimpleJdbcInsert.includeSynonymsForTableColumnMetaData()SimpleJdbcInsertOperations.includeSynonymsForTableColumnMetaData()Include synonyms for the column meta-data lookups via JDBC.SimpleJdbcInsertOperations.usingColumns(String... columnNames) Specify the column names that the insert statement should be limited to use.SimpleJdbcInsertOperations.usingGeneratedKeyColumns(String... columnNames) Specify the names of any columns that have auto generated keys.SimpleJdbcInsertOperations.withCatalogName(String catalogName) Specify the catalog name, if any, to be used for the insert.SimpleJdbcInsert.withoutTableColumnMetaDataAccess()SimpleJdbcInsertOperations.withoutTableColumnMetaDataAccess()Turn off any processing of column meta-data information obtained via JDBC.SimpleJdbcInsertOperations.withSchemaName(String schemaName) Specify the schema name, if any, to be used for the insert.SimpleJdbcInsertOperations.withTableName(String tableName) Specify the table name to be used for the insert.