There are some samples in that zip file as well. Then it was just a matter of writing a bit of code:
package comuniversalmetalsmvbase; import com.tigr.mvapi.MVConnection; import com.tigr.mvapi.MVConstants; import com.tigr.mvapi.MVStatement; import com.tigr.mvapi.ResultSet.MVResultSet; import com.tigr.mvapi.exceptions.MVException; import java.util.Properties; /** * * @author arash */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { Properties props = new Properties(); props.setProperty("username", "MVSP"); props.setProperty("password", ""); String url = "jdbc:mv:mvbase:192.168.1.5:9010"; String account = "SYSPROG"; String AM = MVConstants.AM; String query; MVConnection connection = null; try { connection = new MVConnection(url, props); /** * Execute a query and display the results: */ MVStatement mvStatement = connection.createStatement(); connection.logTo(account, ""); // query = "LIST CUSTOMERS (I"; //boolean result = mvStatement.execute(query); //MVResultSet results = mvStatement.getResultSet(); MVResultSet results = mvStatement.executeQuery("PEOPLE", "", "", "FIRST-NAME"); while (results.next()) { String row = results.getCurrentRow(); System.out.println(row); } } catch (MVException e) { System.out.println(e.toString()); } finally { if (connection != null) { try { connection.close(); } catch (MVException e) { e.printStackTrace(); } } } } }