rawsql-ts
Version:
[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.
10 lines (9 loc) • 430 B
TypeScript
import { SqlComponent } from "./SqlComponent";
import { InsertQuery } from "./InsertQuery";
import { SimpleSelectQuery } from "./SimpleSelectQuery";
import { BinarySelectQuery } from "./BinarySelectQuery";
import { ValuesQuery } from "./ValuesQuery";
export interface SelectQuery extends SqlComponent {
setParameter(name: string, value: any): this;
}
export { SimpleSelectQuery, BinarySelectQuery, ValuesQuery, InsertQuery };