public interface ISQLServerBulkRecord
| Modifier and Type | Method and Description |
|---|---|
String |
getColumnName(int column)
Get the name of the given column.
|
Set<Integer> |
getColumnOrdinals()
Get the ordinals for each of the columns represented in this data record.
|
int |
getColumnType(int column)
Get the JDBC data type of the given column.
|
int |
getPrecision(int column)
Get the precision for the given column.
|
Object[] |
getRowData()
Gets the data for the current row as an array of Objects.
|
int |
getScale(int column)
Get the scale for the given column.
|
boolean |
isAutoIncrement(int column)
Indicates whether the column represents an identity column.
|
boolean |
next()
Advances to the next data row.
|
Set<Integer> getColumnOrdinals()
String getColumnName(int column)
column - Column ordinalint getColumnType(int column)
column - Column ordinalint getPrecision(int column)
column - Column ordinalint getScale(int column)
column - Column ordinalboolean isAutoIncrement(int column)
column - Column ordinalObject[] getRowData() throws SQLServerException
SQLServerException - If there are any errors in obtaining the data.boolean next()
throws SQLServerException
SQLServerException - If there are any errors in advancing to the next row.Copyright © 2018 Microsoft Corporation. All rights reserved.