0% found this document useful (0 votes)
7 views

Lecture_9

Uploaded by

ttooffee23
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Lecture_9

Uploaded by

ttooffee23
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

12/2/2024

SQLITE Database

Login & Signup

General Steps to login & signup with SQLite

1. Create class Users.


2. Create class to create Databse, table users,
login & signup operations.
3. Front End pages

1
12/2/2024

Create Class Model

Users class used as connected path between


front end and database
There are two functions :
• fromMap : to get data from database to Model
• toMap : to pass data from Model to Database

Create Class Users

2
12/2/2024

Create Database and Table

INSERT Operation

• InsertData is a method takes Model class as parameter


• We must call openDB function to open database
• _database.insert is a method takes table name and function toJson

You might also like