hi i want to get data from the sqlite database. I want to use a method to load data in my Edittext.
private void ladeDaten(String tbname,String fach)
{
String select = "SELECT info FROM "+tbname+" WHERE name='"+fach+"'";
String info = ""; // how I can
((EditText)(findViewById(R.id.txtContacto))).setText(info);
}
What can I do?
http://stackoverflow.com/questions/12015731/android-sqlite-example
– joey.enfield Jan 24 '13 at 13:40