You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* See {@link https://github.com/kysely-org/kysely/blob/master/site/docs/recipes/0004-splitting-query-building-and-execution.md#execute-compiled-queries splitting build, compile and execute code recipe} for more information.
540
543
*/
541
-
executeQuery<R>(
544
+
asyncexecuteQuery<R>(
542
545
query: CompiledQuery<R>|Compilable<R>,
543
-
// TODO: remove this in the future. deprecated in 0.28.x
544
-
queryId?: QueryId,
546
+
options?: ExecuteOptions,
545
547
): Promise<QueryResult<R>>{
546
-
if(queryId!==undefined){
547
-
logOnce(
548
-
'Passing `queryId` in `db.executeQuery` is deprecated and will result in a compile-time error in the future.',
0 commit comments