Package org.tmatesoft.sqljet.core.map
Interface ISqlJetMapTable
-
- All Known Implementing Classes:
SqlJetMapTable
public interface ISqlJetMapTable
- Author:
- TMate Software Ltd., Sergey Scherbina (sergey.scherbina@gmail.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object[]
get(long key)
ISqlJetMapTableCursor
getCursor()
long
put(long key, java.lang.Object... values)
-
-
-
Method Detail
-
put
long put(long key, java.lang.Object... values) throws SqlJetException
- Parameters:
key
-values
-- Returns:
- data entry id
- Throws:
SqlJetException
-
get
java.lang.Object[] get(long key) throws SqlJetException
- Parameters:
key
-- Returns:
- data stored with the key specified
- Throws:
SqlJetException
-
getCursor
ISqlJetMapTableCursor getCursor() throws SqlJetException
- Returns:
- cursor instance
- Throws:
SqlJetException
-
-