public interface RowLoader
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getRow(java.lang.String schemaName,
java.lang.String tableName,
java.lang.Object[] primarykey) |
void |
init(java.lang.String initStr)
This method is called to initialize the RowLoader with the parameters
passed for the loader in the create table ddl.
|
java.lang.Object getRow(java.lang.String schemaName,
java.lang.String tableName,
java.lang.Object[] primarykey)
throws java.sql.SQLException
schemaName - Name of the schema.tableName - Name of the table.primarykey - The primary key as Object[] as multiple column can make up
the primary key.ResultSet. The order of values should be in the
same order as the order of columns in the table. If a
ResultSet is returned, then only the first row will be
read from it.java.sql.SQLExceptionvoid init(java.lang.String initStr) throws java.sql.SQLException
initStr - is the string passed to SYS.ATTACH_LOADER procedurejava.sql.SQLExceptionCopyright © 2010-2015 Pivotal Software, Inc. All rights reserved.