Package org.gdbms.engine.data

Examples of org.gdbms.engine.data.DataSource


     * Tests a simple select query
     *
     * @throws Throwable DOCUMENT ME!
     */
    public void testSelect() throws Throwable {
      DataSource d = ds.executeSQL("select apellido from persona where nombre='fernando';");
   
      d.start();
      String aux = d.getAsString();
      d.stop();
   
      FileInputStream fis = new FileInputStream("src/test/resources/select.txt");
      byte[] correcto = new byte[aux.getBytes().length];
      fis.read(correcto);
      fis.close();
View Full Code Here

TOP

Related Classes of org.gdbms.engine.data.DataSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.