insert()মেথডে ContentValues অবজেক্ট পাস করে ডাটাবেজে ডাটা প্রবেশ করান:
// Gets the data repository in write mode
SQLiteDatabase db = mDbHelper.getWritableDatabase();
// Create a new map of values, where column names are the keys
ContentValues values = new ContentValues();
values.put(FeedEntry.COLUMN_NAME_ENTRY_ID, id);
values.put(FeedEntry.COLUMN_NAME_TITLE, title);
values.put(FeedEntry.COLUMN_NAME_CONTENT, content);
// Insert the new row, returning the primary key value of the new row
long newRowId;
newRowId = db.insert(
FeedEntry.TABLE_NAME,
FeedEntry.COLUMN_NAME_NULLABLE,
values);
insert()এর প্রথম আলোচনা হচ্ছে শুধুমাত্র টেবিল নাম। দ্বিতীয় আলোচনা (আর্গুমেন্ট) একটা কলামের নাম প্রদান করে যেখানে ফ্রেমওয়ার্ক ইভেন্টে NULL প্রবেশ করাতে পারে যাতে ContentValues খালি হয় (আপনি যদি পরিবর্তে "null" এ এটা সেট করেন, যখন এখানে কোন ভ্যালু থাকবে না তখন ফ্রেমওয়ার্ক একটি রো প্রবেশ করাবে না )