I'm trying to make a simple select from a table. When I compile it's working well, but when I compile in "Android mode" say: package de.bezier.data.sql does not exist.
if (msql.connect()){//if connection OK msql.query("SELECT * FROM ddbbTable");//Select data int i=100; //var position while (msql.next ()) {//while data text(msql.getInt(1), 100, i);//get data i+=20;//position increase println( "ID: " + msql.getInt(1) );//print data } }else{//if connection KO println("connection failed !");//print msg } }