Uses of Class
nl.cwi.monetdb.embedded.env.MonetDBEmbeddedException
| Package | Description |
|---|---|
| nl.cwi.monetdb.embedded.env | |
| nl.cwi.monetdb.embedded.mapping | |
| nl.cwi.monetdb.embedded.resultset | |
| nl.cwi.monetdb.embedded.tables |
-
Uses of MonetDBEmbeddedException in nl.cwi.monetdb.embedded.env
Methods in nl.cwi.monetdb.embedded.env that throw MonetDBEmbeddedException Modifier and Type Method Description booleanMonetDBEmbeddedConnection. checkIfTableExists(String schemaName, String tableName)Check if a table exists in the database.protected voidAbstractConnectionResult. checkMetadataArrayLength(Object input)Checks the length of an input array for metadata retrievalvoidMonetDBEmbeddedConnection. commit()Commits the current transaction.static MonetDBEmbeddedConnectionMonetDBEmbeddedDatabase. createConnection()Creates a connection on the database, set on the default schema.static JDBCEmbeddedConnectionMonetDBEmbeddedDatabase. createJDBCEmbeddedConnection(String directory)Creates a JDBC embedded connection in the directory.static JDBCEmbeddedConnectionMonetDBEmbeddedDatabase. createJDBCEmbeddedConnection(String directory, boolean silentFlag, boolean sequentialFlag)Creates a JDBC embedded connection in the directory.booleanMonetDBEmbeddedPreparedStatement. execute()Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.voidMonetDBEmbeddedPreparedStatement. executeAndIgnore()Like the previous one, but without returning any result.QueryResultSetMonetDBEmbeddedConnection. executeQuery(String query)Executes a SQL query with a result set.QueryResultSetMonetDBEmbeddedPreparedStatement. executeQuery()Executes the SQL query in this PreparedStatement object and returns QueryResultSet ResultSet object generated by the query.intMonetDBEmbeddedConnection. executeUpdate(String query)Executes a SQL query without a result set, returning the number of rows it affected.intMonetDBEmbeddedPreparedStatement. executeUpdate()Executes the SQL statement in this PreparedStatement object, which must be an SQL INSERT, UPDATE or DELETE statement; or an SQL statement that returns nothing, such as a DDL statement.booleanMonetDBEmbeddedConnection. getAutoCommit()Retrieves the current auto-commit mode for this connection.abstract voidAbstractConnectionResult. getColumnDigits(int[] input)Gets the column digits as an integer array.voidMonetDBEmbeddedPreparedStatement. getColumnDigits(int[] input)abstract voidAbstractConnectionResult. getColumnNames(String[] input)Gets the columns names as a string array.voidMonetDBEmbeddedPreparedStatement. getColumnNames(String[] input)abstract voidAbstractConnectionResult. getColumnScales(int[] input)Gets the column scales as an integer array.voidMonetDBEmbeddedPreparedStatement. getColumnScales(int[] input)abstract voidAbstractConnectionResult. getColumnTypes(String[] input)Gets the columns types as a string array.voidMonetDBEmbeddedPreparedStatement. getColumnTypes(String[] input)static StringMonetDBEmbeddedDatabase. getDatabaseDirectory()Gets the database's farm directory.abstract voidAbstractConnectionResult. getMappings(MonetDBToJavaMapping[] input)Gets the Java mappings as a MonetDBToJavaMapping array.voidMonetDBEmbeddedPreparedStatement. getMappings(MonetDBToJavaMapping[] input)MonetDBTableMonetDBEmbeddedConnection. getMonetDBTable(String tableName)Retrieves a MonetDB Table in the current schema for further operations.MonetDBTableMonetDBEmbeddedConnection. getMonetDBTable(String schemaName, String tableName)Retrieves a database table for further operations on it such as appending data.abstract intAbstractConnectionResult. getNumberOfColumns()Returns the number of columns in the result set.static intMonetDBEmbeddedDatabase. getNumberOfConnections()Gets the current total number of connections to the database.intMonetDBEmbeddedSavePoint. getSavepointId()Retrieves the generated ID for the savepoint that this Savepoint object represents.StringMonetDBEmbeddedSavePoint. getSavepointName()Retrieves the name of the savepoint that this Savepoint object represents.StringMonetDBEmbeddedConnection. getSchema()Retrieves the current schema set on the connection.static booleanMonetDBEmbeddedDatabase. isDatabaseRunningInMemory()Check if the database is running in-memory.static booleanMonetDBEmbeddedDatabase. isSequentialFlagSet()Checks if the Sequential Flag was set while creating the database.static booleanMonetDBEmbeddedDatabase. isSilentFlagSet()Checks if the Silent Flag was set while creating the database.QueryResultSetMonetDBEmbeddedConnection. listTables(boolean listSystemTables)Performs a listing of the existing tables with schemas.MonetDBEmbeddedPreparedStatementMonetDBEmbeddedConnection. prepareStatement(String query)Starts a prepared statement.voidMonetDBEmbeddedConnection. releaseSavepoint(Savepoint savepoint)Removes the given Savepoint object from the current transaction.static voidMonetDBEmbeddedDatabase. removeConnection(MonetDBEmbeddedConnection con, boolean toShutDown)Removes a connection from the database.voidMonetDBEmbeddedConnection. removeTable(String schemaName, String tableName)Deletes a table if exists in the database.voidMonetDBEmbeddedConnection. rollback()Rollbacks the current transaction.voidMonetDBEmbeddedConnection. rollback(Savepoint savepoint)Undoes all changes made after the given Savepoint object was set.voidMonetDBEmbeddedConnection. setAutoCommit(boolean autoCommit)Sets this connection's auto-commit mode to the given state.voidMonetDBEmbeddedPreparedStatement. setBigDecimal(int idx, BigDecimal x)Sets the designated parameter to the given java.math.BigDecimal value.voidMonetDBEmbeddedPreparedStatement. setBlob(int parameterIndex, Blob x)Sets the designated parameter to the given Blob object.voidMonetDBEmbeddedPreparedStatement. setBoolean(int parameterIndex, boolean x)Sets the designated parameter to the given Java boolean value.voidMonetDBEmbeddedPreparedStatement. setByte(int parameterIndex, byte x)Sets the designated parameter to the given Java byte value.voidMonetDBEmbeddedPreparedStatement. setBytes(int parameterIndex, byte[] x)Sets the designated parameter to the given Java array of bytes.voidMonetDBEmbeddedPreparedStatement. setClob(int i, Clob x)Sets the designated parameter to the given Clob object.voidMonetDBEmbeddedPreparedStatement. setDate(int parameterIndex, Date x)Sets the designated parameter to the given java.sql.Date value.voidMonetDBEmbeddedPreparedStatement. setDate(int parameterIndex, Date x, Calendar cal)Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.voidMonetDBEmbeddedPreparedStatement. setDouble(int parameterIndex, double x)Sets the designated parameter to the given Java double value.voidMonetDBEmbeddedPreparedStatement. setFloat(int parameterIndex, float x)Sets the designated parameter to the given Java float value.voidMonetDBEmbeddedPreparedStatement. setInt(int parameterIndex, int x)Sets the designated parameter to the given Java int value.voidMonetDBEmbeddedPreparedStatement. setLong(int parameterIndex, long x)Sets the designated parameter to the given Java long value.voidMonetDBEmbeddedPreparedStatement. setNull(int parameterIndex, int sqlType)Sets the designated parameter to SQL NULL.voidMonetDBEmbeddedPreparedStatement. setNull(int paramIndex, int sqlType, String typeName)Sets the designated parameter to SQL NULL.voidMonetDBEmbeddedPreparedStatement. setObject(int index, Object x)Sets the value of the designated parameter using the given object.voidMonetDBEmbeddedPreparedStatement. setObject(int parameterIndex, Object x, int targetSqlType)Sets the value of the designated parameter with the given object.voidMonetDBEmbeddedPreparedStatement. setObject(int parameterIndex, Object x, int targetSqlType, int scale)Sets the value of the designated parameter with the given object.SavepointMonetDBEmbeddedConnection. setSavepoint()Creates an unnamed savepoint in the current transaction and returns the new Savepoint object that represents it.SavepointMonetDBEmbeddedConnection. setSavepoint(String name)Creates a savepoint with the given name in the current transaction and returns the new Savepoint object that represents it.voidMonetDBEmbeddedConnection. setSchema(String newSchema)Sets the current schema for this connection.voidMonetDBEmbeddedPreparedStatement. setShort(int parameterIndex, short x)Sets the designated parameter to the given Java short value.voidMonetDBEmbeddedPreparedStatement. setString(int parameterIndex, String x)Sets the designated parameter to the given Java String value.voidMonetDBEmbeddedPreparedStatement. setTime(int index, Time x)Sets the designated parameter to the given java.sql.Time value.voidMonetDBEmbeddedPreparedStatement. setTime(int index, Time x, Calendar cal)Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.voidMonetDBEmbeddedPreparedStatement. setTimestamp(int index, Timestamp x)Sets the designated parameter to the given java.sql.Timestamp value.voidMonetDBEmbeddedPreparedStatement. setTimestamp(int index, Timestamp x, Calendar cal)Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.voidMonetDBEmbeddedPreparedStatement. setURL(int parameterIndex, URL x)Sets the designated parameter to the given java.net.URL value.static voidMonetDBEmbeddedDatabase. startDatabase(String dbDirectory)Starts a MonetDB database on the given farm.static voidMonetDBEmbeddedDatabase. startDatabase(String dbDirectory, boolean silentFlag, boolean sequentialFlag)Starts a MonetDB database on the given farm with debugging parameters if desired.voidMonetDBEmbeddedConnection. startTransaction()Begins a transaction.static voidMonetDBEmbeddedDatabase. stopDatabase()Stops the database. -
Uses of MonetDBEmbeddedException in nl.cwi.monetdb.embedded.mapping
Methods in nl.cwi.monetdb.embedded.mapping that throw MonetDBEmbeddedException Modifier and Type Method Description <T> TMonetDBRow. getColumnByName(String columnName)Gets a column value as a Java class using the default mapping.<T> TMonetDBRow. getColumnByName(String columnName, Class<T> javaClass)Gets a column value as a Java class.abstract intAbstractRowSet. getColumnIndexByName(String columnName)Gets a column index in the result set by name.static MonetDBToJavaMappingMonetDBToJavaMapping. getJavaMappingFromMonetDBString(String sqlName)Get the corresponding MonetDBToJavaMapping from MonetDB internal data type.static intMonetDBToJavaMapping. getJavaMappingFromMonetDBStringOrdinalValue(String sqlName)Get the corresponding MonetDBToJavaMapping from MonetDB internal data type.<T> voidMonetDBRow. setColumnByName(String columnName, Class<T> javaClass, T value)Sets a column value as a Java class.<T> voidMonetDBRow. setColumnByName(String columnName, T value)Sets a column value as a Java class.Constructors in nl.cwi.monetdb.embedded.mapping that throw MonetDBEmbeddedException Constructor Description AbstractColumn(String columnType, String columnName, int columnDigits, int columnScale)AbstractRowSet(AbstractConnectionResult table, Object[][] rows) -
Uses of MonetDBEmbeddedException in nl.cwi.monetdb.embedded.resultset
Methods in nl.cwi.monetdb.embedded.resultset that throw MonetDBEmbeddedException Modifier and Type Method Description booleanQueryResultSet. checkBooleanIsNull(int column, int row)Tests if a boolean in the result set is a null value.QueryResultRowSetQueryResultSet. fetchAllRowValues()Fetches all rows from the result set.QueryResultRowSetQueryResultSet. fetchFirstNRowValues(int n)Fetches the first N rows from the result set.QueryResultRowSetQueryResultSet. fetchResultSetRows(int startIndex, int endIndex)Fetch rows from the result set.byte[]QueryResultSet. getBlobByColumnIndexAndRow(int column, int row)Retrieves a single byte[] value (BLOB) in the result set.byte[]QueryResultSet. getBlobByColumnNameAndRow(String columnName, int row)Retrieves a single byte[] (BLOB) value in the result set by name.voidQueryResultSet. getBlobColumnByIndex(int column, byte[][] input)Retrieves a byte[] (BLOB) column by index.voidQueryResultSet. getBlobColumnByIndex(int column, byte[][] input, int offset, int length)Retrieves a byte[] (BLOB) column by index.voidQueryResultSet. getBlobColumnByName(String columnName, byte[][] input)Retrieves a byte[] (BLOB) column by name.voidQueryResultSet. getBlobColumnByName(String columnName, byte[][] input, int offset, int length)Retrieves a byte[] (BLOB) column by name.booleanQueryResultSet. getBooleanByColumnIndexAndRow(int column, int row)Retrieves a single boolean value in the result set.booleanQueryResultSet. getBooleanByColumnNameAndRow(String columnName, int row)Retrieves a single boolean value in the result set by name.voidQueryResultSet. getBooleanColumnByIndex(int column, boolean[] input)Retrieves a boolean column by index.voidQueryResultSet. getBooleanColumnByIndex(int column, boolean[] input, int offset, int length)Retrieves a boolean column by index.voidQueryResultSet. getBooleanColumnByName(String columnName, boolean[] input)Retrieves a boolean column by name.voidQueryResultSet. getBooleanColumnByName(String columnName, boolean[] input, int offset, int length)Retrieves a boolean column by name.byteQueryResultSet. getByteByColumnIndexAndRow(int column, int row)Retrieves a single byte value in the result set.byteQueryResultSet. getByteByColumnNameAndRow(String columnName, int row)Retrieves a single byte value in the result set by name.voidQueryResultSet. getByteColumnByIndex(int column, byte[] input)Retrieves a byte column by index.voidQueryResultSet. getByteColumnByIndex(int column, byte[] input, int offset, int length)Retrieves a byte column by index.voidQueryResultSet. getByteColumnByName(String columnName, byte[] input)Retrieves a byte column by name.voidQueryResultSet. getByteColumnByName(String columnName, byte[] input, int offset, int length)Retrieves a byte column by name.<T> T[]QueryResultRowSet. getColumnByName(String columnName)Gets a column in this set as a Java class using the default mapping.<T> T[]QueryResultRowSet. getColumnByName(String columnName, Class<T> javaClass)Gets a column in this set as a Java class.voidQueryResultSet. getColumnDigits(int[] input)intQueryResultRowSet. getColumnIndexByName(String columnName)intQueryResultSet. getColumnIndexByName(String columnName)Gets a column index from the result set by namevoidQueryResultSet. getColumnNames(String[] input)voidQueryResultSet. getColumnNullMappingsByIndex(int column, boolean[] input)Gets the null mapping of a column by index.voidQueryResultSet. getColumnScales(int[] input)voidQueryResultSet. getColumnTypes(String[] input)DateQueryResultSet. getDateByColumnIndexAndRow(int column, int row)Retrieves a single Date value in the result set.DateQueryResultSet. getDateByColumnNameAndRow(String columnName, int row)Retrieves a single Date value in the result set by name.voidQueryResultSet. getDateColumnByIndex(int column, Date[] input)Retrieves a Date column by index.voidQueryResultSet. getDateColumnByIndex(int column, Date[] input, int offset, int length)Retrieves a Date column by index.voidQueryResultSet. getDateColumnByName(String columnName, Date[] input)Retrieves a Date column by name.voidQueryResultSet. getDateColumnByName(String columnName, Date[] input, int offset, int length)Retrieves a Date column by name.BigDecimalQueryResultSet. getDecimalByColumnIndexAndRow(int column, int row)Retrieves a single BigDecimal value in the result set.BigDecimalQueryResultSet. getDecimalByColumnNameAndRow(String columnName, int row)Retrieves a single decimal value in the result set by name.voidQueryResultSet. getDecimalColumnByIndex(int column, BigDecimal[] input)Retrieves a BigDecimal column by index.voidQueryResultSet. getDecimalColumnByIndex(int column, BigDecimal[] input, int offset, int length)Retrieves a BigDecimal column by index.voidQueryResultSet. getDecimalColumnByName(String columnName, BigDecimal[] input)Retrieves an BigDecimal column by name.voidQueryResultSet. getDecimalColumnByName(String columnName, BigDecimal[] input, int offset, int length)Retrieves a BigDecimal column by name.doubleQueryResultSet. getDoubleByColumnIndexAndRow(int column, int row)Retrieves a single double value in the result set.doubleQueryResultSet. getDoubleByColumnNameAndRow(String columnName, int row)Retrieves a single double value in the result set by name.voidQueryResultSet. getDoubleColumnByIndex(int column, double[] input)Retrieves a double column by index.voidQueryResultSet. getDoubleColumnByIndex(int column, double[] input, int offset, int length)Retrieves a double column by index.voidQueryResultSet. getDoubleColumnByName(String columnName, double[] input)Retrieves a double column by name.voidQueryResultSet. getDoubleColumnByName(String columnName, double[] input, int offset, int length)Retrieves a double column by name.floatQueryResultSet. getFloatByColumnIndexAndRow(int column, int row)Retrieves a single float value in the result set.floatQueryResultSet. getFloatByColumnNameAndRow(String columnName, int row)Retrieves a single float value in the result set by name.voidQueryResultSet. getFloatColumnByIndex(int column, float[] input)Retrieves a float column by index.voidQueryResultSet. getFloatColumnByIndex(int column, float[] input, int offset, int length)Retrieves a float column by index.voidQueryResultSet. getFloatColumnByName(String columnName, float[] input)Retrieves a float column by name.voidQueryResultSet. getFloatColumnByName(String columnName, float[] input, int offset, int length)Retrieves a float column by name.voidQueryResultSet. getIntColumnByIndex(int column, int[] input)Retrieves an integer column by index.voidQueryResultSet. getIntColumnByIndex(int column, int[] input, int offset, int length)Retrieves an integer column by index.voidQueryResultSet. getIntColumnByName(String columnName, int[] input)Retrieves an integer column by name.voidQueryResultSet. getIntColumnByName(String columnName, int[] input, int offset, int length)Retrieves an integer column by name.intQueryResultSet. getIntegerByColumnIndexAndRow(int column, int row)Retrieves a single integer value in the result set.intQueryResultSet. getIntegerByColumnNameAndRow(String columnName, int row)Retrieves a single integer value in the result set by name.longQueryResultSet. getLongByColumnIndexAndRow(int column, int row)Retrieves a single long value in the result set.longQueryResultSet. getLongByColumnNameAndRow(String columnName, int row)Retrieves a single long value in the result set by name.voidQueryResultSet. getLongColumnByIndex(int column, long[] input)Retrieves a long column by index.voidQueryResultSet. getLongColumnByIndex(int column, long[] input, int offset, int length)Retrieves a long column by index.voidQueryResultSet. getLongColumnByName(String columnName, long[] input)Retrieves a long column by name.voidQueryResultSet. getLongColumnByName(String columnName, long[] input, int offset, int length)Retrieves a long column by name.voidQueryResultSet. getMappings(MonetDBToJavaMapping[] input)voidQueryResultSet. getNullMappingByName(String columnName, boolean[] input)Gets the null mapping of a column by nameStringQueryResultSet. getOidByColumnIndexAndRow(int column, int row)Retrieves a single oid value in the result set.StringQueryResultSet. getOidByColumnNameAndRow(String columnName, int row)Retrieves a single oid value in the result set by name.voidQueryResultSet. getOidColumnByIndex(int column, String[] input)Retrieves an oid column by index.voidQueryResultSet. getOidColumnByIndex(int column, String[] input, int offset, int length)Retrieves an oid column by index.voidQueryResultSet. getOidColumnByName(String columnName, String[] input)Retrieves an oid column by name.voidQueryResultSet. getOidColumnByName(String columnName, String[] input, int offset, int length)Retrieves an oid column by name.shortQueryResultSet. getShortByColumnIndexAndRow(int column, int row)Retrieves a single short value in the result set.shortQueryResultSet. getShortByColumnNameAndRow(String columnName, int row)Retrieves a single short value in the result set by name.voidQueryResultSet. getShortColumnByIndex(int column, short[] input)Retrieves a short column by index.voidQueryResultSet. getShortColumnByIndex(int column, short[] input, int offset, int length)Retrieves a short column by index.voidQueryResultSet. getShortColumnByName(String columnName, short[] input)Retrieves a short column by name.voidQueryResultSet. getShortColumnByName(String columnName, short[] input, int offset, int length)Retrieves a short column by name.<T> TQueryResultRowSet. getSingleValueByName(int row, String columnName)Gets a single value in this set as a Java class using the default mapping.<T> TQueryResultRowSet. getSingleValueByName(int row, String columnName, Class<T> javaClass)Gets a single value in this set as a Java class.StringQueryResultSet. getStringByColumnIndexAndRow(int column, int row)Retrieves a single String value in the result set.StringQueryResultSet. getStringByColumnNameAndRow(String columnName, int row)Retrieves a single String value in the result set by name.voidQueryResultSet. getStringColumnByIndex(int column, String[] input)Retrieves a String column by index.voidQueryResultSet. getStringColumnByIndex(int column, String[] input, int offset, int length)Retrieves a String column by index.voidQueryResultSet. getStringColumnByName(String columnName, String[] input)Retrieves a String column by name.voidQueryResultSet. getStringColumnByName(String columnName, String[] input, int offset, int length)Retrieves a String column by name.TimeQueryResultSet. getTimeByColumnIndexAndRow(int column, int row)Retrieves a single Time value in the result set.TimeQueryResultSet. getTimeByColumnNameAndRow(String columnName, int row)Retrieves a single Time value in the result set by name.voidQueryResultSet. getTimeColumnByIndex(int column, Time[] input)Retrieves a Time column by index.voidQueryResultSet. getTimeColumnByIndex(int column, Time[] input, int offset, int length)Retrieves a Time column by index.voidQueryResultSet. getTimeColumnByName(String columnName, Time[] input)Retrieves a Time column by name.voidQueryResultSet. getTimeColumnByName(String columnName, Time[] input, int offset, int length)Retrieves a Time column by name.TimestampQueryResultSet. getTimestampByColumnIndexAndRow(int column, int row)Retrieves a single Timestamp value in the result set.TimestampQueryResultSet. getTimestampByColumnNameAndRow(String columnName, int row)Retrieves a single Timestamp value in the result set by name.voidQueryResultSet. getTimestampColumnByIndex(int column, Timestamp[] input)Retrieves a Timestamp column by index.voidQueryResultSet. getTimestampColumnByIndex(int column, Timestamp[] input, int offset, int length)Retrieves a Timestamp column by index.voidQueryResultSet. getTimestampColumnByName(String columnName, Timestamp[] input)Retrieves a Timestamp column by name.voidQueryResultSet. getTimestampColumnByName(String columnName, Timestamp[] input, int offset, int length)Retrieves a Timestamp column by name.voidQueryResultSet. mapColumnToObjectByIndex(int column, Object[] input)Maps a column to a Java Object representation of the array by index.voidQueryResultSet. mapColumnToObjectByName(String columnName, Object[] input)Maps a column to a Java Object representation of the array by name. -
Uses of MonetDBEmbeddedException in nl.cwi.monetdb.embedded.tables
Methods in nl.cwi.monetdb.embedded.tables that throw MonetDBEmbeddedException Modifier and Type Method Description intMonetDBTable. appendColumns(Object[] input)Appends new rows to the table column-wise.MonetDBTableColumn[]MonetDBTable. getAllColumnsMetadata()Gets all columns metadata.<T> TRowIterator. getColumnByName(String columnName)Gets a column value as a Java class using the default mapping.<T> TRowIterator. getColumnByName(String columnName, Class<T> javaClass)Gets a column value as a Java class.voidMonetDBTable. getColumnDefaultValues(String[] input)Gets the columns default values in an array.protected voidMonetDBTable. getColumnDefaultValuesInternal(String[] input)voidMonetDBTable. getColumnDigits(int[] input)protected voidMonetDBTable. getColumnDigitsInternal(int[] input)intRowIterator. getColumnIndexByName(String columnName)MonetDBTableColumnMonetDBTable. getColumnMetadataByIndex(int index)Gets a column metadata by index.MonetDBTableColumnMonetDBTable. getColumnMetadataByName(String name)Gets a column metadata by name.voidMonetDBTable. getColumnNames(String[] input)protected voidMonetDBTable. getColumnNamesInternal(String[] input)voidMonetDBTable. getColumnNullableIndexes(boolean[] input)Gets the columns nullable indexes as an array.protected voidMonetDBTable. getColumnNullableIndexesInternal(boolean[] input)voidMonetDBTable. getColumnScales(int[] input)protected voidMonetDBTable. getColumnScalesInternal(int[] input)voidMonetDBTable. getColumnTypes(String[] input)protected voidMonetDBTable. getColumnTypesInternal(String[] input)voidMonetDBTable. getMappings(MonetDBToJavaMapping[] input)protected voidMonetDBTable. getMappingsInternal(MonetDBToJavaMapping[] input)intMonetDBTable. getNumberOfColumns()intMonetDBTable. iterateTable(IMonetDBTableCursor cursor)Iterate over the table using aIMonetDBTableCursorinstance.Constructors in nl.cwi.monetdb.embedded.tables that throw MonetDBEmbeddedException Constructor Description MonetDBTableColumn(String columnType, String columnName, int columnDigits, int columnScale, String defaultValue, boolean isNullable)