Package mdbtools.dbengine
Class Engine
- java.lang.Object
-
- mdbtools.dbengine.Engine
-
public class Engine extends Object
Engine is the entry point into a java based database backend The datastore for the data is un-important since the engine communiates with the data via a set of defined interfaces. A sql parser is not included here instead the caller must parse the sql and pass in a parse tree.
-
-
Constructor Summary
Constructors Constructor Description Engine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Data
execute(SQL sql)
execute is used to tell the engine to do something
-
-
-
Method Detail
-
execute
public Data execute(SQL sql) throws SQLException
execute is used to tell the engine to do something- Throws:
SQLException
-
-