* 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();