org.tmatesoft.sqljet.core.map
Interface ISqlJetMapTable

All Known Implementing Classes:
SqlJetMapTable

public interface ISqlJetMapTable


Method Summary
 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