package
1.6.4
Repository: https://github.com/aldelo/common.git
Documentation: pkg.go.dev

# Structs

SQLite struct encapsulates the SQLite database access functionality (using sqlx package) DatabasePath = full path to the sqlite db file with file name and extension Mode = ro (ReadOnly), rw (ReadWrite), rwc (ReadWriteCreate < Default), memory (In-Memory) JournalMode = DELETE, MEMORY, WAL (< Default) Synchronous = 0 (OFF), 1 (NORMAL < Default), 2 (FULL), 3 (EXTRA) BusyTimeoutMS = 0 if not specified; > 0 if specified.
SQLiteResult defines sql action query result info [ Notes ] NewlyInsertedID = ONLY FOR INSERT, ONLY IF AUTO_INCREMENT PRIMARY KEY (Custom PK ID Will Have This Field as 0 Always).