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(java.lang.String... columnNames)
          Specify the column names that the insert statement should be limited to use.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.usingGeneratedKeyColumns(java.lang.String... columnNames)
          Specify the name sof any columns that have auto generated keys.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.withCatalogName(java.lang.String catalogName)
          Specify the catalog name, if any, to be used for the insert.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.withSchemaName(java.lang.String schemaName)
          Specify the shema name, if any, to be used for the insert.
 SimpleJdbcInsertOperations SimpleJdbcInsertOperations.withTableName(java.lang.String tableName)
          Specify the table name to be used for the insert.
 



Copyright © 2002-2008 The Spring Framework.