src/allographer/v1/query_builder/models/sqlite/query/sqlite_builder

Procs

proc avgBuilder(self: SqliteQuery; column: string): string {.
    ...raises: [KeyError, ValueError], tags: [].}
proc columnBuilder(self: SqliteQuery): string {....raises: [KeyError, ValueError],
    tags: [].}
proc countBuilder(self: SqliteQuery): string {....raises: [KeyError, ValueError],
    tags: [].}
proc deleteBuilder(self: SqliteQuery): string {....raises: [KeyError, ValueError],
    tags: [].}
proc deleteByIdBuilder(self: SqliteQuery; id: int; key: string): string {.
    ...raises: [ValueError, KeyError], tags: [].}
proc insertValueBuilder(self: SqliteQuery; items: JsonNode): string {.
    ...raises: [ValueError, KeyError], tags: [].}
items is JOject
proc insertValuesBuilder(self: SqliteQuery; rows: openArray[JsonNode]): string {.
    ...raises: [ValueError, KeyError], tags: [].}
proc maxBuilder(self: SqliteQuery; column: string): string {.
    ...raises: [KeyError, ValueError], tags: [].}
proc minBuilder(self: SqliteQuery; column: string): string {.
    ...raises: [KeyError, ValueError], tags: [].}
proc selectBuilder(self: SqliteQuery): string {....raises: [KeyError, ValueError],
    tags: [].}
proc selectFindBuilder(self: SqliteQuery; key: string): string {.
    ...raises: [ValueError, KeyError], tags: [].}
proc selectFirstBuilder(self: SqliteQuery): string {.
    ...raises: [KeyError, ValueError], tags: [].}
proc sumBuilder(self: SqliteQuery; column: string): string {.
    ...raises: [KeyError, ValueError], tags: [].}
proc updateBuilder(self: SqliteQuery; items: JsonNode): string {.
    ...raises: [KeyError, ValueError], tags: [].}