[android-developers] Re: insert the data in the Sqlite Database

2008-12-02 Thread crontabpy
On Dec 2, 8:11 am, Rahul [EMAIL PROTECTED] wrote: i want to insert data in the database of Android Application i create this code         String Iname=EtName.getText().toString();         String Imob=EtMob.getText().toString();         String Icity=EtCity.getText().toString();            

[android-developers] Re: insert the data in the Sqlite Database

2008-12-02 Thread NuuNeoI
You may forget Double Quote String strsql=INSERT TABLE DataTable(Name,Mobile,City) VALUES (\+ Iname +\,\+ Imob +\,\+ Icity +\); On Dec 2, 6:11 pm, Rahul [EMAIL PROTECTED] wrote: i want to insert data in the database of Android Application i create this code         String

[android-developers] Re: insert the data in the Sqlite Database

2008-12-02 Thread Robert Green
Or you can use the provider example that the NotePad app shows. I'm using it and it didn't take me longer than an hour to get in. On Dec 2, 11:40 am, NuuNeoI [EMAIL PROTECTED] wrote: You may forget Double Quote String strsql=INSERT TABLE DataTable(Name,Mobile,City) VALUES (\+ Iname +\,\+