Class SqlJetMapTable
- java.lang.Object
-
- org.tmatesoft.sqljet.core.internal.map.SqlJetMapTable
-
- All Implemented Interfaces:
ISqlJetMapTable
public class SqlJetMapTable extends java.lang.Object implements ISqlJetMapTable
-
-
Constructor Summary
Constructors Constructor Description SqlJetMapTable(SqlJetMapDb mapDb, ISqlJetBtree btree, SqlJetMapDef mapDef, boolean writable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object[]get(long key)ISqlJetMapTableCursorgetCursor()longput(long key, java.lang.Object... values)
-
-
-
Constructor Detail
-
SqlJetMapTable
public SqlJetMapTable(SqlJetMapDb mapDb, ISqlJetBtree btree, SqlJetMapDef mapDef, boolean writable)
- Parameters:
mapDb-btree-mapDef-writable-
-
-
Method Detail
-
getCursor
public ISqlJetMapTableCursor getCursor() throws SqlJetException
- Specified by:
getCursorin interfaceISqlJetMapTable- Returns:
- cursor instance
- Throws:
SqlJetException
-
put
public long put(long key, java.lang.Object... values) throws SqlJetException- Specified by:
putin interfaceISqlJetMapTable- Returns:
- data entry id
- Throws:
SqlJetException
-
get
public java.lang.Object[] get(long key) throws SqlJetException- Specified by:
getin interfaceISqlJetMapTable- Returns:
- data stored with the key specified
- Throws:
SqlJetException
-
-