can anybody give example how to connect sqlite with android?
Thanks in advance
can anybody give example how to connect sqlite with android?
Thanks in advance
The Android Developer's Data section might be useful.
Additionally there's a tutorial that might provide an easier entry to just talking to SQLite.
It's all about
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.database.sqlite.SQLiteStatement;
The below lines you has to import to work with sqlite database:
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.database.sqlite.SQLiteStatement;
I suggest you some links where you get the examples and full ideas for SQLite database:
Hope you refer these links and this links helps you.
Enjoy!!!!