Java Beginner to Advanced Bangla Tutorials | Android | 2022-23 Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database
Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database Transcript and Lesson Notes
Learning outcomes ----------------------------------- 1) How to create a table and database private static final String DATABASE_NAME = "student.db"; private static final String TABLE_NAME = "student_details"; private st
Quick Summary
Learning outcomes ----------------------------------- 1) How to create a table and database private static final String DATABASE_NAME = "student.db"; private static final String TABLE_NAME = "student_details"; private st
Key Takeaways
- Review the core idea: Learning outcomes ----------------------------------- 1) How to create a table and database private static final String DATABASE_NAME = "student.db"; private static final String TABLE_NAME = "student_details"; private st
- Understand how android bangla tutorial fits into Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database.
- Understand how android bangla tutorial for beginners fits into Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database.
- Understand how android bangla video tutorial fits into Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database.
- Understand how android full course fits into Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database.
Key Concepts
Full Transcript
Learning outcomes ----------------------------------- 1) How to create a table and database private static final String DATABASE_NAME = "student.db"; private static final String TABLE_NAME = "student_details"; private static final String ID = "_id"; private static final String NAME = "Name"; private static final String AGE = "Age"; private static final int DATABASE_VERSION_NO = 1; private static final String CREATE_TABLE = "CREATE TABLE "+TABLE_NAME+"("+ID+" INTEGER PRIMARY KEY AUTOINCREMENT,"+NAME+" VARCHAR(255),"+AGE+" INTEGER);"; private Context context; public MyDataBaseHelper(Context context) { super(context, DATABASE_NAME, null, DATABASE_VERSION_NO); this.context = context; } @Override public void onCreate(SQLiteDatabase db) { try { Toast.makeText(context,"onCreate is called",Toast.LENGTH_SHORT).show(); db.execSQL(CREATE_TABLE); }catch (Exception e) { Toast.makeText(context,"Exception : "+e,Toast.LENGTH_SHORT).show(); } } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { } sql Database : https://www.youtube.com/playlist?list=PLgH5QX0i9K3qLcx9DvVDWmNJ7riPvxzCD Subscribe : https://www.youtube.com/channel/UCEXwc6mNh7Lakj6lX-7a2Mg Facebook : https://www.facebook.com/anisul2010s Facebook page : https://www.facebook.com/studywithanis/
Lesson FAQs
What is Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database about?
Learning outcomes ----------------------------------- 1) How to create a table and database private static final String DATABASE_NAME = "student.db"; private static final String TABLE_NAME = "student_details"; private st
What key concepts are covered in this lesson?
The lesson covers android bangla tutorial, android bangla tutorial for beginners, android bangla video tutorial, android full course, anisul islam android.
What should I learn before Android Bangla Tutorial 7.10 : Creating table And database (part-1) | SQLite Database?
Review the previous lessons in Java Beginner to Advanced Bangla Tutorials | Android | 2022-23, then use the transcript and key concepts on this page to fill any gaps.
How can I practice after this lesson?
Practice by applying the main concepts: android bangla tutorial, android bangla tutorial for beginners, android bangla video tutorial, android full course.
Does this lesson include a transcript?
Yes. The full transcript is visible on this page in indexable HTML sections.
Is this lesson free?
Yes. CourseHive lessons and courses are available to learn online for free.
