| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import { entityKind } from "../../entity.js";
- import { SQL, sql } from "../../sql/sql.js";
- class SQLiteCountBuilder extends SQL {
- constructor(params) {
- super(SQLiteCountBuilder.buildEmbeddedCount(params.source, params.filters).queryChunks);
- this.params = params;
- this.session = params.session;
- this.sql = SQLiteCountBuilder.buildCount(
- params.source,
- params.filters
- );
- }
- sql;
- static [entityKind] = "SQLiteCountBuilderAsync";
- [Symbol.toStringTag] = "SQLiteCountBuilderAsync";
- session;
- static buildEmbeddedCount(source, filters) {
- return sql`(select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters})`;
- }
- static buildCount(source, filters) {
- return sql`select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters}`;
- }
- then(onfulfilled, onrejected) {
- return Promise.resolve(this.session.count(this.sql)).then(
- onfulfilled,
- onrejected
- );
- }
- catch(onRejected) {
- return this.then(void 0, onRejected);
- }
- finally(onFinally) {
- return this.then(
- (value) => {
- onFinally?.();
- return value;
- },
- (reason) => {
- onFinally?.();
- throw reason;
- }
- );
- }
- }
- export {
- SQLiteCountBuilder
- };
- //# sourceMappingURL=count.js.map
|