A B C D E F G H I L M N O P R S T U V W _

A

ABORT_RECORD - Static variable in class simpledb.LogFile
 
addTable(DbFile, String, String) - Method in class simpledb.Catalog
Add a new table to the catalog.
addTable(DbFile, String) - Method in class simpledb.Catalog
 
addTable(DbFile) - Method in class simpledb.Catalog
Add a new table to the catalog.

B

BEGIN_RECORD - Static variable in class simpledb.LogFile
 
BufferPool - Class in simpledb
BufferPool manages the reading and writing of pages into memory from disk.
BufferPool(int) - Constructor for class simpledb.BufferPool
Creates a BufferPool that caches up to numPages pages.

C

Catalog - Class in simpledb
The Catalog keeps track of all available tables in the database and their associated schemas.
Catalog() - Constructor for class simpledb.Catalog
Constructor.
CHECKPOINT_RECORD - Static variable in class simpledb.LogFile
 
clear() - Method in class simpledb.Catalog
Delete all tables from the catalog
close() - Method in interface simpledb.DbFileIterator
Closes the iterator.
close() - Method in interface simpledb.DbIterator
Closes the iterator.
close() - Method in class simpledb.SeqScan
 
close() - Method in class simpledb.TupleIterator
 
COMMIT_RECORD - Static variable in class simpledb.LogFile
 
compare(Predicate.Op, Field) - Method in interface simpledb.Field
Compare the value of this field object to the passed in value.
compare(Predicate.Op, Field) - Method in class simpledb.IntField
Compare the specified field to the value of this Field.
compare(Predicate.Op, Field) - Method in class simpledb.StringField
Compare the specified field to the value of this Field.
convert(ArrayList<ArrayList<Integer>>, File, int, int) - Static method in class simpledb.HeapFileEncoder
Convert the specified tuple list (with only integer fields) into a binary page file.
convert(File, File, int, int) - Static method in class simpledb.HeapFileEncoder
 
convert(File, File, int, int, Type[]) - Static method in class simpledb.HeapFileEncoder
Convert the specified input text file into a binary page file.
counter - Static variable in class simpledb.TransactionId
 
createEmptyHeapFile(String, int) - Static method in class simpledb.Utility
A utility method to create a new HeapFile with a single empty page, assuming the path does not already exist.
createEmptyPageData() - Static method in class simpledb.HeapPage
Static method to generate a byte array corresponding to an empty HeapPage.
currentOffset - Variable in class simpledb.LogFile
 

D

Database - Class in simpledb
Database is a class that initializes several static variables used by the database system (the catalog, the buffer pool, and the log files, in particular.)
Database() - Constructor for class simpledb.Database
 
DbException - Exception in simpledb
Generic database exception class
DbException(String) - Constructor for exception simpledb.DbException
 
DbFile - Interface in simpledb
The interface for database files on disk.
DbFileIterator - Interface in simpledb
DbFileIterator is the iterator interface that all SimpleDB Dbfile should implement.
DbIterator - Interface in simpledb
DbIterator is the iterator interface that all SimpleDB operators should implement.
Debug - Class in simpledb
Debug is a utility class that wraps println statements and allows more or less command line output to be turned on.
Debug() - Constructor for class simpledb.Debug
 
DEBUG_LEVEL - Static variable in class simpledb.Debug
 
DEFAULT_LEVEL - Static variable in class simpledb.Debug
 
DEFAULT_PAGES - Static variable in class simpledb.BufferPool
Default number of pages passed to the constructor.
deleteTuple(TransactionId, Tuple) - Method in class simpledb.BufferPool
Remove the specified tuple from the buffer pool.
deleteTuple(TransactionId, Tuple) - Method in interface simpledb.DbFile
Removes the specifed tuple from the file on behalf of the specified transaction.
deleteTuple(TransactionId, Tuple) - Method in class simpledb.HeapFile
 
deleteTuple(Tuple) - Method in class simpledb.HeapPage
Delete the specified tuple from the page; the tuple should be updated to reflect that it is no longer stored on any page.
discardPage(PageId) - Method in class simpledb.BufferPool
Remove the specific page id from the buffer pool.

E

equals(Object) - Method in interface simpledb.Field
 
equals(Object) - Method in class simpledb.HeapPageId
Compares one PageId to another.
equals(Object) - Method in class simpledb.IntField
 
equals(Object) - Method in interface simpledb.PageId
Compares one PageId to another.
equals(Object) - Method in class simpledb.RecordId
Two RecordId objects are considered equal if they represent the same tuple.
equals(Object) - Method in class simpledb.StringField
 
equals(Object) - Method in class simpledb.TransactionId
 
equals(Object) - Method in class simpledb.TupleDesc
Compares the specified object with this TupleDesc for equality.
evictPage() - Method in class simpledb.BufferPool
Discards a page from the buffer pool.

F

Field - Interface in simpledb
Interface for values of fields in tuples in SimpleDB.
fieldNameToIndex(String) - Method in class simpledb.TupleDesc
Find the index of the field with a given name.
filter(Tuple) - Method in class simpledb.Predicate
Compares the field number of t specified in the constructor to the operand field specified in the constructor using the operator specific in the constructor.
flushAllPages() - Method in class simpledb.BufferPool
Flush all dirty pages to disk.
flushPage(PageId) - Method in class simpledb.BufferPool
Flushes a certain page to disk
flushPages(TransactionId) - Method in class simpledb.BufferPool
Write all pages of the specified transaction to disk.
force() - Method in class simpledb.LogFile
 

G

getBeforeImage() - Method in class simpledb.HeapPage
Return a view of this page before it was modified -- used by recovery
getBeforeImage() - Method in interface simpledb.Page
Provide a representation of this page before any modifications were made to it.
getBufferPool() - Static method in class simpledb.Database
Return the buffer pool of the static Database instance
getCatalog() - Static method in class simpledb.Database
Return the catalog of the static Database instance
getDbFile(int) - Method in class simpledb.Catalog
Returns the DbFile that can be used to read the contents of the specified table.
getField(int) - Method in class simpledb.Tuple
 
getFieldName(int) - Method in class simpledb.TupleDesc
Gets the (possibly null) field name of the ith field of this TupleDesc.
getFieldType(int) - Method in class simpledb.TupleDesc
Gets the type of the ith field of this TupleDesc.
getFile() - Method in class simpledb.HeapFile
Returns the File backing this HeapFile on disk.
getHeaderSize() - Method in class simpledb.HeapPage
Computes the number of bytes in the header of a page in a HeapFile with each tuple occupying tupleSize bytes
getHeapTuple(int) - Static method in class simpledb.Utility
 
getHeapTuple(int[]) - Static method in class simpledb.Utility
 
getHeapTuple(int, int) - Static method in class simpledb.Utility
 
getId() - Method in interface simpledb.DbFile
Returns a unique ID used to identify this DbFile in the Catalog.
getId() - Method in class simpledb.HeapFile
Returns an ID uniquely identifying this HeapFile.
getId() - Method in class simpledb.HeapPage
 
getId() - Method in interface simpledb.Page
Return the id of this page.
getId() - Method in class simpledb.TransactionId
 
getLen() - Method in enum simpledb.Type
 
getLogFile() - Static method in class simpledb.Database
Return the log file of the static Database instance
getNumEmptySlots() - Method in class simpledb.HeapPage
Returns the number of empty slots on this page.
getNumTuples() - Method in class simpledb.HeapPage
Retrieve the number of tuples on this page.
getOp(String) - Static method in enum simpledb.Predicate.Op
Interface to access operations by a string containing an integer index for command-line convenience.
getOp(int) - Static method in enum simpledb.Predicate.Op
Interface to access operations by integer value for command-line convenience.
getPage(TransactionId, PageId, Permissions) - Method in class simpledb.BufferPool
Retrieve the specified page with the associated permissions.
getPageData() - Method in class simpledb.HeapPage
Generates a byte array representing the contents of this page.
getPageData() - Method in interface simpledb.Page
Generates a byte array representing the contents of this page.
getPageId() - Method in class simpledb.RecordId
 
getPrimaryKey(int) - Method in class simpledb.Catalog
 
getRecordId() - Method in class simpledb.Tuple
 
getSize() - Method in class simpledb.TupleDesc
 
getStrings(int, String) - Static method in class simpledb.Utility
 
getTableId(String) - Method in class simpledb.Catalog
Return the id of the table with a specified name,
getTableId() - Method in class simpledb.HeapPageId
 
getTableId() - Method in interface simpledb.PageId
 
getTableName(int) - Method in class simpledb.Catalog
 
getTotalRecords() - Method in class simpledb.LogFile
 
getTuple(int[], int) - Static method in class simpledb.Utility
 
getTupleDesc(int) - Method in class simpledb.Catalog
Returns the tuple descriptor (schema) of the specified table
getTupleDesc() - Method in interface simpledb.DbFile
Returns the TupleDesc of the table stored in this DbFile.
getTupleDesc() - Method in interface simpledb.DbIterator
Returns the TupleDesc associated with this DbIterator.
getTupleDesc() - Method in class simpledb.HeapFile
Returns the TupleDesc of the table stored in this DbFile.
getTupleDesc() - Method in class simpledb.SeqScan
Returns the TupleDesc with field names from the underlying HeapFile, prefixed with the tableAlias string from the constructor.
getTupleDesc() - Method in class simpledb.Tuple
 
getTupleDesc() - Method in class simpledb.TupleIterator
 
getTupleDesc(int, String) - Static method in class simpledb.Utility
 
getTupleDesc(int) - Static method in class simpledb.Utility
 
getType() - Method in interface simpledb.Field
Returns the type of this field (see Type.INT_TYPE or Type.STRING_TYPE
getType() - Method in class simpledb.IntField
Return the Type of this field.
getType() - Method in class simpledb.StringField
 
getTypes(int) - Static method in class simpledb.Utility
 
getValue() - Method in class simpledb.IntField
 
getValue() - Method in class simpledb.StringField
 

H

hashCode() - Method in interface simpledb.Field
Hash code.
hashCode() - Method in class simpledb.HeapPageId
 
hashCode() - Method in class simpledb.IntField
 
hashCode() - Method in interface simpledb.PageId
 
hashCode() - Method in class simpledb.RecordId
You should implement the hashCode() so that two equal RecordId instances (with respect to equals()) have the same hashCode().
hashCode() - Method in class simpledb.StringField
 
hashCode() - Method in class simpledb.TransactionId
 
hashCode() - Method in class simpledb.TupleDesc
 
hasNext() - Method in interface simpledb.DbFileIterator
 
hasNext() - Method in interface simpledb.DbIterator
Returns true if the iterator has more tuples.
hasNext() - Method in class simpledb.SeqScan
 
hasNext() - Method in class simpledb.TupleIterator
 
header - Variable in class simpledb.HeapPage
 
HeapFile - Class in simpledb
HeapFile is an implementation of a DbFile that stores a collection of tuples in no particular order.
HeapFile(File, TupleDesc) - Constructor for class simpledb.HeapFile
Constructs a heap file backed by the specified file.
HeapFileEncoder - Class in simpledb
HeapFileEncoder reads a comma delimited text file or accepts an array of tuples and converts it to pages of binary data in the appropriate format for simpledb heap pages Pages are padded out to a specified length, and written consecutive in a data file.
HeapFileEncoder() - Constructor for class simpledb.HeapFileEncoder
 
HeapPage - Class in simpledb
Each instance of HeapPage stores data for one page of HeapFiles and implements the Page interface that is used by BufferPool.
HeapPage(HeapPageId, byte[]) - Constructor for class simpledb.HeapPage
Create a HeapPage from a set of bytes of data read from disk.
HeapPageId - Class in simpledb
Unique identifier for HeapPage objects.
HeapPageId(int, int) - Constructor for class simpledb.HeapPageId
Constructor.
holdsLock(TransactionId, PageId) - Method in class simpledb.BufferPool
Return true if the specified transaction has a lock on the specified page

I

i - Variable in class simpledb.TupleIterator
 
insertTuple(TransactionId, int, Tuple) - Method in class simpledb.BufferPool
Add a tuple to the specified table behalf of transaction tid.
insertTuple(TransactionId, Tuple) - Method in interface simpledb.DbFile
Inserts the specified tuple to the file on behalf of transaction.
insertTuple(TransactionId, Tuple) - Method in class simpledb.HeapFile
 
insertTuple(Tuple) - Method in class simpledb.HeapPage
Adds the specified tuple to the page; the tuple should be updated to reflect that it is now stored on this page.
INT_SIZE - Static variable in class simpledb.LogFile
 
IntField - Class in simpledb
Instance of Field that stores a single integer.
IntField(int) - Constructor for class simpledb.IntField
Constructor.
isDirty() - Method in class simpledb.HeapPage
Returns the tid of the transaction that last dirtied this page, or null if the page is not dirty
isDirty() - Method in interface simpledb.Page
Get the id of the transaction that last dirtied this page, or null if the page is clean..
isEnabled(int) - Static method in class simpledb.Debug
 
isEnabled() - Static method in class simpledb.Debug
 
isSlotFree(int) - Method in class simpledb.HeapPage
Returns true if associated slot on this page is filled.
iterator(TransactionId) - Method in interface simpledb.DbFile
Returns an iterator over all the tuples stored in this DbFile.
iterator(TransactionId) - Method in class simpledb.HeapFile
 
iterator() - Method in class simpledb.HeapPage
 

L

listToString(ArrayList<Integer>) - Static method in class simpledb.Utility
 
loadSchema(String) - Method in class simpledb.Catalog
Reads the schema from a file and creates the appropriate tables in the database.
log(int, String, Object...) - Static method in class simpledb.Debug
Log message if the log level >= level.
log(String, Object...) - Static method in class simpledb.Debug
Logs message at the default log level.
logAbort(TransactionId) - Method in class simpledb.LogFile
Write an abort record to the log for the specified tid, force the log to disk, and perform a rollback
logCheckpoint() - Method in class simpledb.LogFile
Checkpoint the log and write a checkpoint record.
logCommit(TransactionId) - Method in class simpledb.LogFile
Write a commit record to disk for the specified tid, and force the log to disk.
LogFile - Class in simpledb
The format of the log file is as follows: The first long integer of the file represents the offset of the last written checkpoint, or -1 if there are no checkpoints All additional data in the log consists of log records.
LogFile(File) - Constructor for class simpledb.LogFile
Constructor.
logFile - Variable in class simpledb.LogFile
 
LOGFILENAME - Static variable in class simpledb.Database
 
logTruncate() - Method in class simpledb.LogFile
Truncate any unneeded portion of the log to reduce its space consumption
logWrite(TransactionId, Page, Page) - Method in class simpledb.LogFile
Write an UPDATE record to disk for the specified tid and page (with provided before and after images.)
logXactionBegin(TransactionId) - Method in class simpledb.LogFile
Write a BEGIN record for the specified transaction
LONG_SIZE - Static variable in class simpledb.LogFile
 

M

main(String[]) - Static method in class simpledb.SimpleDb
 
markDirty(boolean, TransactionId) - Method in class simpledb.HeapPage
Marks this page as dirty/not dirty and record that transaction that did the dirtying
markDirty(boolean, TransactionId) - Method in interface simpledb.Page
Set the dirty state of this page as dirtied by a particular transaction
markSlotUsed(int, boolean) - Method in class simpledb.HeapPage
Abstraction to fill or clear a slot on this page.
maxSize - Variable in class simpledb.StringField
 
merge(TupleDesc, TupleDesc) - Static method in class simpledb.TupleDesc
Merge two TupleDescs into one, with td1.numFields + td2.numFields fields, with the first td1.numFields coming from td1 and the remaining from td2.
myid - Variable in class simpledb.TransactionId
 

N

next() - Method in interface simpledb.DbFileIterator
Gets the next tuple from the operator (typically implementing by reading from a child operator or an access method).
next() - Method in interface simpledb.DbIterator
Returns the next tuple from the operator (typically implementing by reading from a child operator or an access method).
next() - Method in class simpledb.SeqScan
 
next() - Method in class simpledb.TupleIterator
 
NO_CHECKPOINT_ID - Static variable in class simpledb.LogFile
 
numFields() - Method in class simpledb.TupleDesc
 
numPages() - Method in class simpledb.HeapFile
Returns the number of pages in this HeapFile.
numSlots - Variable in class simpledb.HeapPage
 

O

oldData - Variable in class simpledb.HeapPage
 
open() - Method in interface simpledb.DbFileIterator
Opens the iterator
open() - Method in interface simpledb.DbIterator
Opens the iterator.
open() - Method in class simpledb.SeqScan
 
open() - Method in class simpledb.TupleIterator
 
openHeapFile(int, File) - Static method in class simpledb.Utility
Opens a HeapFile and adds it to the catalog.
openHeapFile(int, String, File) - Static method in class simpledb.Utility
 

P

Page - Interface in simpledb
Page is the interface used to represent pages that are resident in the BufferPool.
PAGE_SIZE - Static variable in class simpledb.BufferPool
Bytes per page, including header.
PageId - Interface in simpledb
PageId is an interface to a specific page of a specific table.
pageNumber() - Method in class simpledb.HeapPageId
 
pageNumber() - Method in interface simpledb.PageId
 
pageSize - Variable in class simpledb.LogFile
 
parse(DataInputStream) - Method in enum simpledb.Type
 
Permissions - Class in simpledb
Class representing requested permissions to a relation/file.
Permissions(int) - Constructor for class simpledb.Permissions
 
permLevel - Variable in class simpledb.Permissions
 
pid - Variable in class simpledb.HeapPage
 
preAppend() - Method in class simpledb.LogFile
 
Predicate - Class in simpledb
Predicate compares tuples to a specified Field value.
Predicate(int, Predicate.Op, Field) - Constructor for class simpledb.Predicate
Constructor.
Predicate.Op - Enum in simpledb
Constants used for return codes in Field.compare
Predicate.Op() - Constructor for enum simpledb.Predicate.Op
 
print() - Method in class simpledb.LogFile
Print out a human readable represenation of the log

R

raf - Variable in class simpledb.LogFile
 
READ_ONLY - Static variable in class simpledb.Permissions
 
READ_WRITE - Static variable in class simpledb.Permissions
 
readNextTuple(DataInputStream, int) - Method in class simpledb.HeapPage
Suck up tuples from the source file.
readPage(PageId) - Method in interface simpledb.DbFile
Read the specified page from disk.
readPage(PageId) - Method in class simpledb.HeapFile
 
readPageData(RandomAccessFile) - Method in class simpledb.LogFile
 
RecordId - Class in simpledb
A RecordId is a reference to a specific tuple on a specific page of a specific table.
RecordId(PageId, int) - Constructor for class simpledb.RecordId
Creates a new RecordId referring to the specified PageId and tuple number.
recover() - Method in class simpledb.LogFile
Recover the database system by ensuring that the updates of committed transactions are installed and that the updates of uncommitted transactions are not installed.
recoveryUndecided - Variable in class simpledb.LogFile
 
releasePage(TransactionId, PageId) - Method in class simpledb.BufferPool
Releases the lock on a page.
reset() - Static method in class simpledb.Database
 
resetBufferPool(int) - Static method in class simpledb.Database
Method used for testing -- create a new instance of the buffer pool and return it
rewind() - Method in interface simpledb.DbFileIterator
Resets the iterator to the start.
rewind() - Method in interface simpledb.DbIterator
Resets the iterator to the start.
rewind() - Method in class simpledb.SeqScan
 
rewind() - Method in class simpledb.TupleIterator
 
rollback(TransactionId) - Method in class simpledb.LogFile
Rollback the specified transaction, setting the state of any of pages it updated to their pre-updated state.

S

SeqScan - Class in simpledb
SeqScan is an implementation of a sequential scan access method that reads each tuple of a table in no particular order (e.g., as they are laid out on disk).
SeqScan(TransactionId, int, String) - Constructor for class simpledb.SeqScan
Creates a sequential scan over the specified table as a part of the specified transaction.
SeqScan(TransactionId, int) - Constructor for class simpledb.SeqScan
 
serialize(DataOutputStream) - Method in interface simpledb.Field
Write the bytes representing this field to the specified DataOutputStream.
serialize() - Method in class simpledb.HeapPageId
Return a representation of this object as an array of integers, for writing to disk.
serialize(DataOutputStream) - Method in class simpledb.IntField
 
serialize() - Method in interface simpledb.PageId
Return a representation of this page id object as a collection of integers (used for logging) This class MUST have a constructor that accepts n integer parameters, where n is the number of integers returned in the array from serialize.
serialize(DataOutputStream) - Method in class simpledb.StringField
Write this string to dos.
serialVersionUID - Static variable in exception simpledb.DbException
 
serialVersionUID - Static variable in exception simpledb.TransactionAbortedException
 
setBeforeImage() - Method in class simpledb.HeapPage
 
setBeforeImage() - Method in interface simpledb.Page
 
setField(int, Field) - Method in class simpledb.Tuple
Change the value of the ith field of this tuple.
setRecordId(RecordId) - Method in class simpledb.Tuple
Set the RecordId information for this tuple.
shutdown() - Method in class simpledb.LogFile
Shutdown the logging system, writing out whatever state is necessary so that start up can happen quickly (without extensive recovery.)
simpledb - package simpledb
 
SimpleDb - Class in simpledb
 
SimpleDb() - Constructor for class simpledb.SimpleDb
 
STRING_LEN - Static variable in enum simpledb.Type
 
StringField - Class in simpledb
Instance of Field that stores a single String of a fixed length.
StringField(String, int) - Constructor for class simpledb.StringField
Constructor.

T

tableIdIterator() - Method in class simpledb.Catalog
 
td - Variable in class simpledb.HeapPage
 
td - Variable in class simpledb.TupleIterator
 
tidToFirstLogRecord - Variable in class simpledb.LogFile
 
toString() - Method in interface simpledb.Field
 
toString() - Method in class simpledb.IntField
 
toString() - Method in class simpledb.Permissions
 
toString() - Method in class simpledb.Predicate
Returns something useful, like "f = field_id op = op_string operand = operand_string
toString() - Method in class simpledb.StringField
 
toString() - Method in class simpledb.Tuple
Returns the contents of this Tuple as a string.
toString() - Method in class simpledb.TupleDesc
Returns a String describing this descriptor.
totalRecords - Variable in class simpledb.LogFile
 
TransactionAbortedException - Exception in simpledb
Exception that is thrown when a transaction has aborted.
TransactionAbortedException() - Constructor for exception simpledb.TransactionAbortedException
 
transactionComplete(TransactionId) - Method in class simpledb.BufferPool
Release all locks associated with a given transaction.
transactionComplete(TransactionId, boolean) - Method in class simpledb.BufferPool
Commit or abort a given transaction; release all locks associated to the transaction.
TransactionId - Class in simpledb
TransactionId is a class that contains the identifier of a transaction.
TransactionId() - Constructor for class simpledb.TransactionId
 
Tuple - Class in simpledb
Tuple maintains information about the contents of a tuple.
Tuple(TupleDesc) - Constructor for class simpledb.Tuple
Create a new tuple with the specified schema (type).
TupleDesc - Class in simpledb
TupleDesc describes the schema of a tuple.
TupleDesc(Type[], String[]) - Constructor for class simpledb.TupleDesc
Create a new TupleDesc with typeAr.length fields with fields of the specified types, with associated named fields.
TupleDesc(Type[]) - Constructor for class simpledb.TupleDesc
Constructor.
TupleIterator - Class in simpledb
Implements a DbIterator by wrapping an Iterable.
TupleIterator(TupleDesc, Iterable<Tuple>) - Constructor for class simpledb.TupleIterator
Constructs an iterator from the specified Iterable, and the specified descriptor.
tupleno() - Method in class simpledb.RecordId
 
tuples - Variable in class simpledb.HeapPage
 
tuples - Variable in class simpledb.TupleIterator
 
Type - Enum in simpledb
Class representing a type in SimpleDB.
Type() - Constructor for enum simpledb.Type
 

U

UPDATE_RECORD - Static variable in class simpledb.LogFile
 
Utility - Class in simpledb
Helper methods used for testing and implementing random features.
Utility() - Constructor for class simpledb.Utility
 

V

value - Variable in class simpledb.IntField
 
value - Variable in class simpledb.StringField
 
valueOf(String) - Static method in enum simpledb.Predicate.Op
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum simpledb.Type
Returns the enum constant of this type with the specified name.
values() - Static method in enum simpledb.Predicate.Op
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum simpledb.Type
Returns an array containing the constants of this enum type, in the order they are declared.

W

writePage(Page) - Method in interface simpledb.DbFile
Push the specified page to disk.
writePage(Page) - Method in class simpledb.HeapFile
 
writePageData(RandomAccessFile, Page) - Method in class simpledb.LogFile
 

_

_bufferpool - Variable in class simpledb.Database
 
_catalog - Variable in class simpledb.Database
 
_instance - Static variable in class simpledb.Database
 
_logfile - Variable in class simpledb.Database
 

A B C D E F G H I L M N O P R S T U V W _