Uses of Interface
org.springframework.jdbc.core.simple.SimpleJdbcInsertOperations

Packages that use SimpleJdbcInsertOperations
org.springframework.jdbc.core.simple Simplification layer over JdbcTemplate for Java 5 and above. 
 

Uses of SimpleJdbcInsertOperations in org.springframework.jdbc.core.simple
 

Classes in org.springframework.jdbc.core.simple that implement SimpleJdbcInsertOperations
 class SimpleJdbcInsert
          A SimpleJdbcInsert is a multi-threaded, reusable object providing easy insert capabilities for a table.
 

Methods in org.springframework.jdbc.core.simple that return SimpleJdbcInsertOperations
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.usingColumns(String... columnNames)
          Specify the column names that the insert statement should be limited to use.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.usingGeneratedKeyColumns(String... columnNames)
          Specify the name sof any columns that have auto generated keys.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.withCatalogName(String catalogName)
          Specify the catalog name, if any, to be used for the insert.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.withSchemaName(String schemaName)
          Specify the shema name, if any, to be used for the insert.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.withTableName(String tableName)
          Specify the table name to be used for the insert.
 



Copyright © 2002-2008 The Spring Framework.