Class Engine


  • public class Engine
    extends java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Engine

        public Engine()
    • Method Detail

      • execute

        public Data execute​(SQL sql)
                     throws java.sql.SQLException
        execute is used to tell the engine to do something
        Throws:
        java.sql.SQLException