Experimental SQLite support

This commit is contained in:
2022-09-30 11:42:13 -05:00
parent c0595f3ef9
commit 52762bd4a1
16 changed files with 1401 additions and 71 deletions

View File

@@ -144,7 +144,7 @@ export abstract class AbstractBuilder<T> extends AppClass {
* @param table
* @param alias
*/
from(table: string, alias?: string): this {
from(table: string|QuerySafeValue, alias?: string): this {
if ( alias ) {
this.source = { table,
alias }