- DB - Class in PrologDB
-
DB objects are database instances of DBSchema objects
- DB(String, DBSchema) - Constructor for class PrologDB.DB
-
Create a prolog database with a given name that instantiates db schema
- dbaseStmt - Static variable in class PrologParser.LineToParse
-
dbase statement as a sequence of tokens
- dbCheck(String) - Static method in class PrologDB.DB
-
asserts that a file pathName ends in ".pl";
Error is thrown otherwise
- DBSchema - Class in PrologDB
-
A DBSchema object defines the schema of a database
- DBSchema(String, TableSchema...) - Constructor for class PrologDB.DBSchema
-
create DBSchema that has name and a list of TableSchemas can
incrementally add subtable tableSchemas subsequently -- before schema is
instantiated as a database
- DBSchema(String) - Constructor for class PrologDB.DBSchema
-
This constructor is used for the incremental construction of database
tableSchemas.
- delete(String, String) - Method in class PrologDB.Table
-
finds tuple with (key,value) pair and deletes the first
- Dot - Class in PrologProductions
-
a Dot is literally "."; nothing to remember
- Dot() - Constructor for class PrologProductions.Dot
-
- Dot(LineToParse) - Constructor for class PrologProductions.Dot
-
- DoubleQuotedString - Class in PrologProductions
-