Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Usage

import * as smallsqliteorm from "https://raw.githubusercontent.com/cybertim/SmallSQLiteORM/main/mod.ts";

§Classes

SSQL

ORM Wrapper to interact with deno.land/x/sqlite using your SSQLTable

SSQLTable

All your model classes should extend this class It includes the incremental 'id' by default

class User extends SSQLTable {
    username = "";
    age = 18;
    active = false;
}

§Interfaces

SSQLDefaults

Interface used to override the DEFAULT column type values

SSQLQuery

Interface used for queries