#include <odbc++/resultsetmetadata.h>
const std::string & odbc::ResultSetMetaData::getColumnName (int column) const |
Get the name of a column.
column | The column index, starting at 1 |
int odbc::ResultSetMetaData::getColumnType (int column) const |
int odbc::ResultSetMetaData::getPrecision (int column) const |
Get the precision of a column.
column | The column index, starting at 1 |
int odbc::ResultSetMetaData::getScale (int column) const |
Get the scale of a column.
column | The column index, starting at 1 |
int odbc::ResultSetMetaData::getColumnDisplaySize (int column) |
Get the display size of a column.
column | The column index, starting at 1 |
std::string odbc::ResultSetMetaData::getCatalogName (int column) |
Get the catalog name for a column.
column | The column index, starting at 1 |
std::string odbc::ResultSetMetaData::getColumnLabel (int column) |
Get the label (if any) for a column.
column | The column index, starting at 1 |
std::string odbc::ResultSetMetaData::getColumnTypeName (int column) |
Get the name of a columns SQL type.
column | The column index, starting at 1 |
std::string odbc::ResultSetMetaData::getSchemaName (int column) |
Get the schema name for a column.
column | The column index, starting at 1 |
std::string odbc::ResultSetMetaData::getTableName (int column) |
Get the table name for a column.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isAutoIncrement (int column) |
Check if a column is autoincrementing.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isCaseSensitive (int column) |
Check if a column is case sensitive.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isCurrency (int column) |
Check if a column can be a currency (eg fixed precision).
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isDefinitelyWritable (int column) |
Check if a column can be updated.
column | The column index, starting at 1 |
int odbc::ResultSetMetaData::isNullable (int column) |
Check if a column can be set to NULL.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isReadOnly (int column) |
Check if a column is read only.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isSearchable (int column) |
Check if a column can be used in a where-clause.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isSigned (int column) |
Check if a column is signed.
column | The column index, starting at 1 |
bool odbc::ResultSetMetaData::isWritable (int column) |
Check if a column is 'probably' writeable.
column | The column index, starting at 1 |