인터페이스: SQLiteCompiledQuery
정의 위치: sqlite-compiler.ts:6
LoadSubsetOptions를 SQLite로 컴파일한 결과입니다.
속성
limit?
optional limit: number;
정의 위치: sqlite-compiler.ts:12
LIMIT 값입니다.
orderBy?
optional orderBy: string;
정의 위치: sqlite-compiler.ts:10
ORDER BY 절입니다("ORDER BY" 키워드 제외). 예: "price DESC"
params
params: unknown[];
정의 위치: sqlite-compiler.ts:14
SQLite 쿼리에 전달할 매개변수 값이며, 순서대로 지정됩니다.
where?
optional where: string;
정의 위치: sqlite-compiler.ts:8
WHERE 절입니다("WHERE" 키워드 제외). 예: "price > ?"