src/allographer/v2/query_builder/models/sqlite/sqlite_types

created by let rdb = dbOpen(SQLite3, "/path/to/sqlite.db")created by rdb.select("columnName") or rdb.table("tableName")

Types

Connection = ref object
  conn*: PSqlite3
  isBusy*: bool
  createdAt*: int64
Connections = ref object
  conns*: seq[Connection]
  timeout*: int
RawSqliteQuery = ref object
  log*: LogSetting
  pools*: Connections
  query*: JsonNode
  queryString*: string
  placeHolder*: JsonNode
  isInTransaction*: bool
  transactionConn*: int
SQLite3 = object
SqliteConnections = ref object
  log*: LogSetting
  pools*: Connections
  isInTransaction*: bool
  transactionConn*: int
SqliteQuery = ref object
  log*: LogSetting
  pools*: Connections
  query*: JsonNode
  queryString*: string
  placeHolder*: JsonNode
  isInTransaction*: bool
  transactionConn*: int