sqlitemodel icon indicating copy to clipboard operation
sqlitemodel copied to clipboard

wrapper for the sqlite3 database that enables you to create models you can easily save, query and retrieve from the database.

Results 2 sqlitemodel issues
Sort by recently updated
recently updated
newest added

I set up a table with this query: ```SQL CREATE TABLE "FCMembers" ( "memberId" TEXT NOT NULL UNIQUE, "name" TEXT, "money" INTEGER DEFAULT 1000, PRIMARY KEY("memberId") ); ``` Then I...