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
- Author:
- TMate Software Ltd., Sergey Scherbina (sergey.scherbina@gmail.com)
-
-
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)
ISqlJetMapTableCursor
getCursor()
long
put(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:
getCursor
in interfaceISqlJetMapTable
- Returns:
- cursor instance
- Throws:
SqlJetException
-
put
public long put(long key, java.lang.Object... values) throws SqlJetException
- Specified by:
put
in interfaceISqlJetMapTable
- Returns:
- data entry id
- Throws:
SqlJetException
-
get
public java.lang.Object[] get(long key) throws SqlJetException
- Specified by:
get
in interfaceISqlJetMapTable
- Returns:
- data stored with the key specified
- Throws:
SqlJetException
-
-