515253545556575859
Driver driver; JdbcIndexEngine engine; @Before public void setUp() throws Exception { driver = new Driver(getDataSource()); JdbcIndexEngineFactory factory = new JdbcIndexEngineFactory(driver); engine = factory.create(); }
215216217218219220221
/** * Creates the necessary relations to save Index and IndexField instances. */ public void install() { new SchemaCreateCommand(getDataSource()).execute(); // TODO: sql independence }