@tsonic/efcore-sqlite 10.0.5 → 10.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.Data.Sqlite/internal/index.d.ts +129 -109
- package/Microsoft.DotNet.PlatformAbstractions/internal/index.d.ts +6 -4
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +54 -54
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +9 -7
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +10 -8
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +23 -13
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +10 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +17 -11
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/internal/index.d.ts +11 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +19 -15
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/internal/index.d.ts +42 -42
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +10 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +116 -38
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +14 -10
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +52 -26
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +22 -12
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +16 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +82 -54
- package/Microsoft.Extensions.DependencyModel.Resolution/internal/index.d.ts +22 -20
- package/SQLitePCL/internal/index.d.ts +93 -43
- package/System.Collections.Generic/internal/index.d.ts +9 -9
- package/__internal/extensions/index.d.ts +196 -162
- package/package.json +5 -5
|
@@ -9,17 +9,17 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { ptr } from "@tsonic/core/types.js";
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
|
-
import * as
|
|
13
|
-
import type {
|
|
14
|
-
import * as
|
|
15
|
-
import type {
|
|
16
|
-
import * as
|
|
17
|
-
import type {
|
|
12
|
+
import * as System_Runtime_InteropServices_Internal from "@tsonic/dotnet/System.Runtime.InteropServices/internal/index.js";
|
|
13
|
+
import type { GCHandleType, SafeHandle } from "@tsonic/dotnet/System.Runtime.InteropServices/internal/index.js";
|
|
14
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
15
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
16
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
import type { AsyncCallback, Attribute, Boolean as ClrBoolean, Byte, Char, Double, Func_1, Func_4, IAsyncResult, ICloneable, IDisposable, Int32, Int64, IntPtr, MulticastDelegate, Object as ClrObject, ReadOnlySpan_1, Span_1, String as ClrString, Type, UInt32, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export type delegate_authorizer = (user_data: unknown, action_code: int, param0: utf8z, param1: utf8z, dbName: utf8z, inner_most_trigger_or_view: utf8z) => int;
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
export type delegate_collation = (user_data: unknown, s1:
|
|
22
|
+
export type delegate_collation = (user_data: unknown, s1: ReadOnlySpan_1<System_Internal.Byte>, s2: ReadOnlySpan_1<System_Internal.Byte>) => int;
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
export type delegate_commit = (user_data: unknown) => int;
|
|
@@ -93,7 +93,7 @@ export interface ISQLite3Provider$instance {
|
|
|
93
93
|
sqlite3_backup_init(destDb: sqlite3, destName: utf8z, sourceDb: sqlite3, sourceName: utf8z): sqlite3_backup;
|
|
94
94
|
sqlite3_backup_remaining(backup: sqlite3_backup): int;
|
|
95
95
|
sqlite3_backup_step(backup: sqlite3_backup, nPage: int): int;
|
|
96
|
-
sqlite3_bind_blob(stmt: sqlite3_stmt, index: int, blob:
|
|
96
|
+
sqlite3_bind_blob(stmt: sqlite3_stmt, index: int, blob: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
97
97
|
sqlite3_bind_double(stmt: sqlite3_stmt, index: int, val: double): int;
|
|
98
98
|
sqlite3_bind_int64(stmt: sqlite3_stmt, index: int, val: long): int;
|
|
99
99
|
sqlite3_bind_null(stmt: sqlite3_stmt, index: int): int;
|
|
@@ -102,13 +102,13 @@ export interface ISQLite3Provider$instance {
|
|
|
102
102
|
sqlite3_bind_text(stmt: sqlite3_stmt, index: int, text: utf8z): int;
|
|
103
103
|
sqlite3_blob_bytes(blob: sqlite3_blob): int;
|
|
104
104
|
sqlite3_blob_open(db: sqlite3, db_utf8: utf8z, table_utf8: utf8z, col_utf8: utf8z, rowid: long, flags: int, blob: sqlite3_blob): int;
|
|
105
|
-
sqlite3_blob_read(blob: sqlite3_blob, b:
|
|
105
|
+
sqlite3_blob_read(blob: sqlite3_blob, b: Span_1<System_Internal.Byte>, offset: int): int;
|
|
106
106
|
sqlite3_blob_reopen(blob: sqlite3_blob, rowid: long): int;
|
|
107
|
-
sqlite3_blob_write(blob: sqlite3_blob, b:
|
|
107
|
+
sqlite3_blob_write(blob: sqlite3_blob, b: ReadOnlySpan_1<System_Internal.Byte>, offset: int): int;
|
|
108
108
|
sqlite3_busy_timeout(db: sqlite3, ms: int): int;
|
|
109
109
|
sqlite3_changes(db: sqlite3): int;
|
|
110
110
|
sqlite3_close_v2(db: nint): int;
|
|
111
|
-
sqlite3_column_blob(stmt: sqlite3_stmt, index: int):
|
|
111
|
+
sqlite3_column_blob(stmt: sqlite3_stmt, index: int): ReadOnlySpan_1<System_Internal.Byte>;
|
|
112
112
|
sqlite3_column_double(stmt: sqlite3_stmt, index: int): double;
|
|
113
113
|
sqlite3_column_int64(stmt: sqlite3_stmt, index: int): long;
|
|
114
114
|
sqlite3_commit_hook(db: sqlite3, func: delegate_commit, v: unknown): void;
|
|
@@ -131,8 +131,8 @@ export interface ISQLite3Provider$instance {
|
|
|
131
131
|
sqlite3_errstr(rc: int): utf8z;
|
|
132
132
|
sqlite3_exec(db: sqlite3, sql: utf8z, callback: delegate_exec, user_data: unknown, errMsg: nint): int;
|
|
133
133
|
sqlite3_interrupt(db: sqlite3): void;
|
|
134
|
-
sqlite3_key(db: sqlite3, key:
|
|
135
|
-
sqlite3_key_v2(db: sqlite3, dbname: utf8z, key:
|
|
134
|
+
sqlite3_key(db: sqlite3, key: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
135
|
+
sqlite3_key_v2(db: sqlite3, dbname: utf8z, key: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
136
136
|
sqlite3_keyword_name(i: int, name: string): int;
|
|
137
137
|
sqlite3_last_insert_rowid(db: sqlite3): long;
|
|
138
138
|
sqlite3_libversion(): utf8z;
|
|
@@ -147,12 +147,12 @@ export interface ISQLite3Provider$instance {
|
|
|
147
147
|
sqlite3_open(filename: utf8z, db: nint): int;
|
|
148
148
|
sqlite3_open_v2(filename: utf8z, db: nint, flags: int, vfs: utf8z): int;
|
|
149
149
|
sqlite3_prepare_v2(db: sqlite3, sql: utf8z, stmt: nint, remain: utf8z): int;
|
|
150
|
-
sqlite3_prepare_v2(db: sqlite3, sql:
|
|
150
|
+
sqlite3_prepare_v2(db: sqlite3, sql: ReadOnlySpan_1<System_Internal.Byte>, stmt: nint, remain: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
151
151
|
sqlite3_prepare_v3(db: sqlite3, sql: utf8z, flags: uint, stmt: nint, remain: utf8z): int;
|
|
152
|
-
sqlite3_prepare_v3(db: sqlite3, sql:
|
|
152
|
+
sqlite3_prepare_v3(db: sqlite3, sql: ReadOnlySpan_1<System_Internal.Byte>, flags: uint, stmt: nint, remain: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
153
153
|
sqlite3_profile(db: sqlite3, func: delegate_profile, v: unknown): void;
|
|
154
154
|
sqlite3_progress_handler(db: sqlite3, instructions: int, func: delegate_progress, v: unknown): void;
|
|
155
|
-
sqlite3_result_blob(context: nint, val:
|
|
155
|
+
sqlite3_result_blob(context: nint, val: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
156
156
|
sqlite3_result_double(context: nint, val: double): void;
|
|
157
157
|
sqlite3_result_error(context: nint, strErr: utf8z): void;
|
|
158
158
|
sqlite3_result_int(context: nint, val: int): void;
|
|
@@ -175,7 +175,7 @@ export interface ISQLite3Provider$instance {
|
|
|
175
175
|
sqlite3_threadsafe(): int;
|
|
176
176
|
sqlite3_trace(db: sqlite3, func: delegate_trace, v: unknown): void;
|
|
177
177
|
sqlite3_update_hook(db: sqlite3, func: delegate_update, v: unknown): void;
|
|
178
|
-
sqlite3_value_blob(p: nint):
|
|
178
|
+
sqlite3_value_blob(p: nint): ReadOnlySpan_1<System_Internal.Byte>;
|
|
179
179
|
sqlite3_value_double(p: nint): double;
|
|
180
180
|
sqlite3_value_int64(p: nint): long;
|
|
181
181
|
sqlite3_value_text(p: nint): utf8z;
|
|
@@ -187,6 +187,8 @@ export interface ISQLite3Provider$instance {
|
|
|
187
187
|
export type ISQLite3Provider = ISQLite3Provider$instance;
|
|
188
188
|
|
|
189
189
|
export interface utf8z$instance {
|
|
190
|
+
readonly __tsonic_type_SQLitePCL_utf8z: never;
|
|
191
|
+
|
|
190
192
|
GetPinnableReference(): byte;
|
|
191
193
|
utf8_to_string(): string;
|
|
192
194
|
}
|
|
@@ -197,7 +199,7 @@ export const utf8z: {
|
|
|
197
199
|
FromIntPtr(p: nint): utf8z;
|
|
198
200
|
FromPtr(p: ptr<byte>): utf8z;
|
|
199
201
|
FromPtrLen(p: ptr<byte>, len: int): utf8z;
|
|
200
|
-
FromSpan(span:
|
|
202
|
+
FromSpan(span: ReadOnlySpan_1<System_Internal.Byte>): utf8z;
|
|
201
203
|
FromString(s: string): utf8z;
|
|
202
204
|
GetZeroTerminatedUTF8Bytes(value: string): byte[];
|
|
203
205
|
};
|
|
@@ -206,6 +208,8 @@ export const utf8z: {
|
|
|
206
208
|
export type utf8z = utf8z$instance;
|
|
207
209
|
|
|
208
210
|
export interface authorizer_hook_info$instance {
|
|
211
|
+
readonly __tsonic_type_SQLitePCL_authorizer_hook_info: never;
|
|
212
|
+
|
|
209
213
|
call(action_code: int, param0: utf8z, param1: utf8z, dbName: utf8z, inner_most_trigger_or_view: utf8z): int;
|
|
210
214
|
}
|
|
211
215
|
|
|
@@ -219,7 +223,9 @@ export const authorizer_hook_info: {
|
|
|
219
223
|
export type authorizer_hook_info = authorizer_hook_info$instance;
|
|
220
224
|
|
|
221
225
|
export interface collation_hook_info$instance {
|
|
222
|
-
|
|
226
|
+
readonly __tsonic_type_SQLitePCL_collation_hook_info: never;
|
|
227
|
+
|
|
228
|
+
call(s1: ReadOnlySpan_1<System_Internal.Byte>, s2: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
223
229
|
}
|
|
224
230
|
|
|
225
231
|
|
|
@@ -232,6 +238,8 @@ export const collation_hook_info: {
|
|
|
232
238
|
export type collation_hook_info = collation_hook_info$instance;
|
|
233
239
|
|
|
234
240
|
export interface commit_hook_info$instance {
|
|
241
|
+
readonly __tsonic_type_SQLitePCL_commit_hook_info: never;
|
|
242
|
+
|
|
235
243
|
_func: delegate_commit;
|
|
236
244
|
_user_data: unknown;
|
|
237
245
|
call(): int;
|
|
@@ -247,6 +255,8 @@ export const commit_hook_info: {
|
|
|
247
255
|
export type commit_hook_info = commit_hook_info$instance;
|
|
248
256
|
|
|
249
257
|
export interface EntryPointAttribute$instance extends Attribute {
|
|
258
|
+
readonly __tsonic_type_SQLitePCL_EntryPointAttribute: never;
|
|
259
|
+
|
|
250
260
|
Name: string;
|
|
251
261
|
}
|
|
252
262
|
|
|
@@ -259,6 +269,8 @@ export const EntryPointAttribute: {
|
|
|
259
269
|
export type EntryPointAttribute = EntryPointAttribute$instance;
|
|
260
270
|
|
|
261
271
|
export interface exec_hook_info$instance {
|
|
272
|
+
readonly __tsonic_type_SQLitePCL_exec_hook_info: never;
|
|
273
|
+
|
|
262
274
|
call(n: int, values_ptr: nint, names_ptr: nint): int;
|
|
263
275
|
}
|
|
264
276
|
|
|
@@ -272,6 +284,8 @@ export const exec_hook_info: {
|
|
|
272
284
|
export type exec_hook_info = exec_hook_info$instance;
|
|
273
285
|
|
|
274
286
|
export interface function_hook_info$instance {
|
|
287
|
+
readonly __tsonic_type_SQLitePCL_function_hook_info: never;
|
|
288
|
+
|
|
275
289
|
call_final(context: nint, agg_context: nint): void;
|
|
276
290
|
call_scalar(context: nint, num_args: int, argsptr: nint): void;
|
|
277
291
|
call_step(context: nint, agg_context: nint, num_args: int, argsptr: nint): void;
|
|
@@ -288,6 +302,8 @@ export const function_hook_info: {
|
|
|
288
302
|
export type function_hook_info = function_hook_info$instance;
|
|
289
303
|
|
|
290
304
|
export interface hook_handle$instance extends SafeGCHandle {
|
|
305
|
+
readonly __tsonic_type_SQLitePCL_hook_handle: never;
|
|
306
|
+
|
|
291
307
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
292
308
|
|
|
293
309
|
ForDispose(): IDisposable;
|
|
@@ -302,6 +318,8 @@ export const hook_handle: {
|
|
|
302
318
|
export type hook_handle = hook_handle$instance;
|
|
303
319
|
|
|
304
320
|
export interface hook_handles$instance {
|
|
321
|
+
readonly __tsonic_type_SQLitePCL_hook_handles: never;
|
|
322
|
+
|
|
305
323
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
306
324
|
|
|
307
325
|
update: IDisposable;
|
|
@@ -322,13 +340,15 @@ export interface hook_handles$instance {
|
|
|
322
340
|
|
|
323
341
|
|
|
324
342
|
export const hook_handles: {
|
|
325
|
-
new(f:
|
|
343
|
+
new(f: Func_4<System_Internal.IntPtr, System_Internal.IntPtr, System_Internal.Int32, System_Internal.Boolean>): hook_handles;
|
|
326
344
|
};
|
|
327
345
|
|
|
328
346
|
|
|
329
347
|
export type hook_handles = hook_handles$instance;
|
|
330
348
|
|
|
331
349
|
export interface log_hook_info$instance {
|
|
350
|
+
readonly __tsonic_type_SQLitePCL_log_hook_info: never;
|
|
351
|
+
|
|
332
352
|
call(rc: int, msg: utf8z): void;
|
|
333
353
|
}
|
|
334
354
|
|
|
@@ -342,6 +362,8 @@ export const log_hook_info: {
|
|
|
342
362
|
export type log_hook_info = log_hook_info$instance;
|
|
343
363
|
|
|
344
364
|
export interface MonoPInvokeCallbackAttribute$instance extends Attribute {
|
|
365
|
+
readonly __tsonic_type_SQLitePCL_MonoPInvokeCallbackAttribute: never;
|
|
366
|
+
|
|
345
367
|
}
|
|
346
368
|
|
|
347
369
|
|
|
@@ -353,6 +375,8 @@ export const MonoPInvokeCallbackAttribute: {
|
|
|
353
375
|
export type MonoPInvokeCallbackAttribute = MonoPInvokeCallbackAttribute$instance;
|
|
354
376
|
|
|
355
377
|
export interface PreserveAttribute$instance extends Attribute {
|
|
378
|
+
readonly __tsonic_type_SQLitePCL_PreserveAttribute: never;
|
|
379
|
+
|
|
356
380
|
AllMembers: boolean;
|
|
357
381
|
Conditional: boolean;
|
|
358
382
|
}
|
|
@@ -366,6 +390,8 @@ export const PreserveAttribute: {
|
|
|
366
390
|
export type PreserveAttribute = PreserveAttribute$instance;
|
|
367
391
|
|
|
368
392
|
export interface profile_hook_info$instance {
|
|
393
|
+
readonly __tsonic_type_SQLitePCL_profile_hook_info: never;
|
|
394
|
+
|
|
369
395
|
call(s: utf8z, elapsed: long): void;
|
|
370
396
|
}
|
|
371
397
|
|
|
@@ -379,6 +405,8 @@ export const profile_hook_info: {
|
|
|
379
405
|
export type profile_hook_info = profile_hook_info$instance;
|
|
380
406
|
|
|
381
407
|
export interface progress_hook_info$instance {
|
|
408
|
+
readonly __tsonic_type_SQLitePCL_progress_hook_info: never;
|
|
409
|
+
|
|
382
410
|
call(): int;
|
|
383
411
|
}
|
|
384
412
|
|
|
@@ -392,6 +420,8 @@ export const progress_hook_info: {
|
|
|
392
420
|
export type progress_hook_info = progress_hook_info$instance;
|
|
393
421
|
|
|
394
422
|
export interface rollback_hook_info$instance {
|
|
423
|
+
readonly __tsonic_type_SQLitePCL_rollback_hook_info: never;
|
|
424
|
+
|
|
395
425
|
call(): void;
|
|
396
426
|
}
|
|
397
427
|
|
|
@@ -405,6 +435,8 @@ export const rollback_hook_info: {
|
|
|
405
435
|
export type rollback_hook_info = rollback_hook_info$instance;
|
|
406
436
|
|
|
407
437
|
export interface SafeGCHandle$instance extends SafeHandle {
|
|
438
|
+
readonly __tsonic_type_SQLitePCL_SafeGCHandle: never;
|
|
439
|
+
|
|
408
440
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
409
441
|
|
|
410
442
|
readonly IsInvalid: boolean;
|
|
@@ -420,11 +452,13 @@ export const SafeGCHandle: {
|
|
|
420
452
|
export type SafeGCHandle = SafeGCHandle$instance;
|
|
421
453
|
|
|
422
454
|
export interface sqlite3$instance extends SafeHandle {
|
|
455
|
+
readonly __tsonic_type_SQLitePCL_sqlite3: never;
|
|
456
|
+
|
|
423
457
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
424
458
|
|
|
425
459
|
readonly IsInvalid: boolean;
|
|
426
460
|
enable_sqlite3_next_stmt(enabled: boolean): void;
|
|
427
|
-
GetOrCreateExtra<T extends IDisposable>(f:
|
|
461
|
+
GetOrCreateExtra<T extends IDisposable>(f: Func_1<T>): T;
|
|
428
462
|
manual_close(): int;
|
|
429
463
|
manual_close_v2(): int;
|
|
430
464
|
ReleaseHandle(): boolean;
|
|
@@ -438,6 +472,8 @@ export const sqlite3: {
|
|
|
438
472
|
export type sqlite3 = sqlite3$instance;
|
|
439
473
|
|
|
440
474
|
export interface sqlite3_backup$instance extends SafeHandle {
|
|
475
|
+
readonly __tsonic_type_SQLitePCL_sqlite3_backup: never;
|
|
476
|
+
|
|
441
477
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
442
478
|
|
|
443
479
|
readonly IsInvalid: boolean;
|
|
@@ -454,6 +490,8 @@ export const sqlite3_backup: {
|
|
|
454
490
|
export type sqlite3_backup = sqlite3_backup$instance;
|
|
455
491
|
|
|
456
492
|
export interface sqlite3_blob$instance extends SafeHandle {
|
|
493
|
+
readonly __tsonic_type_SQLitePCL_sqlite3_blob: never;
|
|
494
|
+
|
|
457
495
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
458
496
|
|
|
459
497
|
readonly IsInvalid: boolean;
|
|
@@ -469,6 +507,8 @@ export const sqlite3_blob: {
|
|
|
469
507
|
export type sqlite3_blob = sqlite3_blob$instance;
|
|
470
508
|
|
|
471
509
|
export interface sqlite3_context$instance {
|
|
510
|
+
readonly __tsonic_type_SQLitePCL_sqlite3_context: never;
|
|
511
|
+
|
|
472
512
|
state: unknown;
|
|
473
513
|
}
|
|
474
514
|
|
|
@@ -480,6 +520,8 @@ export const sqlite3_context: (abstract new(user_data: unknown) => sqlite3_conte
|
|
|
480
520
|
export type sqlite3_context = sqlite3_context$instance;
|
|
481
521
|
|
|
482
522
|
export interface sqlite3_snapshot$instance extends SafeHandle {
|
|
523
|
+
readonly __tsonic_type_SQLitePCL_sqlite3_snapshot: never;
|
|
524
|
+
|
|
483
525
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
484
526
|
|
|
485
527
|
readonly IsInvalid: boolean;
|
|
@@ -495,6 +537,8 @@ export const sqlite3_snapshot: {
|
|
|
495
537
|
export type sqlite3_snapshot = sqlite3_snapshot$instance;
|
|
496
538
|
|
|
497
539
|
export interface sqlite3_stmt$instance extends SafeHandle {
|
|
540
|
+
readonly __tsonic_type_SQLitePCL_sqlite3_stmt: never;
|
|
541
|
+
|
|
498
542
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
499
543
|
|
|
500
544
|
readonly IsInvalid: boolean;
|
|
@@ -510,6 +554,8 @@ export const sqlite3_stmt: {
|
|
|
510
554
|
export type sqlite3_stmt = sqlite3_stmt$instance;
|
|
511
555
|
|
|
512
556
|
export interface sqlite3_value$instance {
|
|
557
|
+
readonly __tsonic_type_SQLitePCL_sqlite3_value: never;
|
|
558
|
+
|
|
513
559
|
}
|
|
514
560
|
|
|
515
561
|
|
|
@@ -520,7 +566,9 @@ export const sqlite3_value: {
|
|
|
520
566
|
|
|
521
567
|
export type sqlite3_value = sqlite3_value$instance;
|
|
522
568
|
|
|
523
|
-
export interface SQLite3Provider_e_sqlite3$instance {
|
|
569
|
+
export interface SQLite3Provider_e_sqlite3$instance extends ISQLite3Provider$instance {
|
|
570
|
+
readonly __tsonic_type_SQLitePCL_SQLite3Provider_e_sqlite3: never;
|
|
571
|
+
|
|
524
572
|
readonly __tsonic_iface_SQLitePCL_ISQLite3Provider: never;
|
|
525
573
|
|
|
526
574
|
}
|
|
@@ -535,12 +583,12 @@ export interface __SQLite3Provider_e_sqlite3$views {
|
|
|
535
583
|
As_ISQLite3Provider(): ISQLite3Provider$instance;
|
|
536
584
|
}
|
|
537
585
|
|
|
538
|
-
export interface SQLite3Provider_e_sqlite3$instance extends ISQLite3Provider$instance {}
|
|
539
|
-
|
|
540
586
|
export type SQLite3Provider_e_sqlite3 = SQLite3Provider_e_sqlite3$instance & __SQLite3Provider_e_sqlite3$views;
|
|
541
587
|
|
|
542
588
|
|
|
543
589
|
export interface trace_hook_info$instance {
|
|
590
|
+
readonly __tsonic_type_SQLitePCL_trace_hook_info: never;
|
|
591
|
+
|
|
544
592
|
call(s: utf8z): void;
|
|
545
593
|
}
|
|
546
594
|
|
|
@@ -554,6 +602,8 @@ export const trace_hook_info: {
|
|
|
554
602
|
export type trace_hook_info = trace_hook_info$instance;
|
|
555
603
|
|
|
556
604
|
export interface update_hook_info$instance {
|
|
605
|
+
readonly __tsonic_type_SQLitePCL_update_hook_info: never;
|
|
606
|
+
|
|
557
607
|
call(typ: int, db: utf8z, tbl: utf8z, rowid: long): void;
|
|
558
608
|
}
|
|
559
609
|
|
|
@@ -835,7 +885,7 @@ export abstract class raw$instance {
|
|
|
835
885
|
static sqlite3_backup_pagecount(backup: sqlite3_backup): int;
|
|
836
886
|
static sqlite3_backup_remaining(backup: sqlite3_backup): int;
|
|
837
887
|
static sqlite3_backup_step(backup: sqlite3_backup, nPage: int): int;
|
|
838
|
-
static sqlite3_bind_blob(stmt: sqlite3_stmt, index: int, blob:
|
|
888
|
+
static sqlite3_bind_blob(stmt: sqlite3_stmt, index: int, blob: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
839
889
|
static sqlite3_bind_double(stmt: sqlite3_stmt, index: int, val: double): int;
|
|
840
890
|
static sqlite3_bind_int(stmt: sqlite3_stmt, index: int, val: int): int;
|
|
841
891
|
static sqlite3_bind_int64(stmt: sqlite3_stmt, index: int, val: long): int;
|
|
@@ -845,23 +895,23 @@ export abstract class raw$instance {
|
|
|
845
895
|
static sqlite3_bind_parameter_index(stmt: sqlite3_stmt, strName: string): int;
|
|
846
896
|
static sqlite3_bind_parameter_name(stmt: sqlite3_stmt, index: int): utf8z;
|
|
847
897
|
static sqlite3_bind_text(stmt: sqlite3_stmt, index: int, val: utf8z): int;
|
|
848
|
-
static sqlite3_bind_text(stmt: sqlite3_stmt, index: int, val:
|
|
898
|
+
static sqlite3_bind_text(stmt: sqlite3_stmt, index: int, val: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
849
899
|
static sqlite3_bind_text(stmt: sqlite3_stmt, index: int, val: string): int;
|
|
850
|
-
static sqlite3_bind_text16(stmt: sqlite3_stmt, index: int, val:
|
|
900
|
+
static sqlite3_bind_text16(stmt: sqlite3_stmt, index: int, val: ReadOnlySpan_1<System_Internal.Char>): int;
|
|
851
901
|
static sqlite3_bind_zeroblob(stmt: sqlite3_stmt, index: int, size: int): int;
|
|
852
902
|
static sqlite3_blob_bytes(blob: sqlite3_blob): int;
|
|
853
903
|
static sqlite3_blob_close(blob: sqlite3_blob): int;
|
|
854
904
|
static sqlite3_blob_open(db: sqlite3, db_utf8: utf8z, table_utf8: utf8z, col_utf8: utf8z, rowid: long, flags: int, blob: sqlite3_blob): int;
|
|
855
905
|
static sqlite3_blob_open(db: sqlite3, sdb: string, table: string, col: string, rowid: long, flags: int, blob: sqlite3_blob): int;
|
|
856
|
-
static sqlite3_blob_read(blob: sqlite3_blob, b:
|
|
906
|
+
static sqlite3_blob_read(blob: sqlite3_blob, b: Span_1<System_Internal.Byte>, offset: int): int;
|
|
857
907
|
static sqlite3_blob_reopen(blob: sqlite3_blob, rowid: long): int;
|
|
858
|
-
static sqlite3_blob_write(blob: sqlite3_blob, b:
|
|
908
|
+
static sqlite3_blob_write(blob: sqlite3_blob, b: ReadOnlySpan_1<System_Internal.Byte>, offset: int): int;
|
|
859
909
|
static sqlite3_busy_timeout(db: sqlite3, ms: int): int;
|
|
860
910
|
static sqlite3_changes(db: sqlite3): int;
|
|
861
911
|
static sqlite3_clear_bindings(stmt: sqlite3_stmt): int;
|
|
862
912
|
static sqlite3_close(db: sqlite3): int;
|
|
863
913
|
static sqlite3_close_v2(db: sqlite3): int;
|
|
864
|
-
static sqlite3_column_blob(stmt: sqlite3_stmt, index: int):
|
|
914
|
+
static sqlite3_column_blob(stmt: sqlite3_stmt, index: int): ReadOnlySpan_1<System_Internal.Byte>;
|
|
865
915
|
static sqlite3_column_bytes(stmt: sqlite3_stmt, index: int): int;
|
|
866
916
|
static sqlite3_column_count(stmt: sqlite3_stmt): int;
|
|
867
917
|
static sqlite3_column_database_name(stmt: sqlite3_stmt, index: int): utf8z;
|
|
@@ -916,8 +966,8 @@ export abstract class raw$instance {
|
|
|
916
966
|
static sqlite3_hard_heap_limit64(n: long): long;
|
|
917
967
|
static sqlite3_initialize(): int;
|
|
918
968
|
static sqlite3_interrupt(db: sqlite3): void;
|
|
919
|
-
static sqlite3_key(db: sqlite3, k:
|
|
920
|
-
static sqlite3_key_v2(db: sqlite3, name: utf8z, k:
|
|
969
|
+
static sqlite3_key(db: sqlite3, k: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
970
|
+
static sqlite3_key_v2(db: sqlite3, name: utf8z, k: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
921
971
|
static sqlite3_keyword_count(): int;
|
|
922
972
|
static sqlite3_keyword_name(i: int, name: string): int;
|
|
923
973
|
static sqlite3_last_insert_rowid(db: sqlite3): long;
|
|
@@ -938,26 +988,26 @@ export abstract class raw$instance {
|
|
|
938
988
|
static sqlite3_open_v2(filename: string, db: sqlite3, flags: int, vfs: string): int;
|
|
939
989
|
static sqlite3_prepare_v2(db: sqlite3, sql: utf8z, stmt: sqlite3_stmt, tail: utf8z): int;
|
|
940
990
|
static sqlite3_prepare_v2(db: sqlite3, sql: utf8z, stmt: sqlite3_stmt): int;
|
|
941
|
-
static sqlite3_prepare_v2(db: sqlite3, sql:
|
|
942
|
-
static sqlite3_prepare_v2(db: sqlite3, sql:
|
|
991
|
+
static sqlite3_prepare_v2(db: sqlite3, sql: ReadOnlySpan_1<System_Internal.Byte>, stmt: sqlite3_stmt, tail: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
992
|
+
static sqlite3_prepare_v2(db: sqlite3, sql: ReadOnlySpan_1<System_Internal.Byte>, stmt: sqlite3_stmt): int;
|
|
943
993
|
static sqlite3_prepare_v2(db: sqlite3, sql: string, stmt: sqlite3_stmt, tail: string): int;
|
|
944
994
|
static sqlite3_prepare_v2(db: sqlite3, sql: string, stmt: sqlite3_stmt): int;
|
|
945
995
|
static sqlite3_prepare_v3(db: sqlite3, sql: utf8z, flags: uint, stmt: sqlite3_stmt, tail: utf8z): int;
|
|
946
996
|
static sqlite3_prepare_v3(db: sqlite3, sql: utf8z, flags: uint, stmt: sqlite3_stmt): int;
|
|
947
|
-
static sqlite3_prepare_v3(db: sqlite3, sql:
|
|
948
|
-
static sqlite3_prepare_v3(db: sqlite3, sql:
|
|
997
|
+
static sqlite3_prepare_v3(db: sqlite3, sql: ReadOnlySpan_1<System_Internal.Byte>, flags: uint, stmt: sqlite3_stmt, tail: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
998
|
+
static sqlite3_prepare_v3(db: sqlite3, sql: ReadOnlySpan_1<System_Internal.Byte>, flags: uint, stmt: sqlite3_stmt): int;
|
|
949
999
|
static sqlite3_prepare_v3(db: sqlite3, sql: string, flags: uint, stmt: sqlite3_stmt, tail: string): int;
|
|
950
1000
|
static sqlite3_prepare_v3(db: sqlite3, sql: string, flags: uint, stmt: sqlite3_stmt): int;
|
|
951
1001
|
static sqlite3_profile(db: sqlite3, f: delegate_profile, v: unknown): void;
|
|
952
1002
|
static sqlite3_profile(db: sqlite3, f: strdelegate_profile, v: unknown): void;
|
|
953
1003
|
static sqlite3_progress_handler(db: sqlite3, instructions: int, func: delegate_progress, v: unknown): void;
|
|
954
|
-
static sqlite3_rekey(db: sqlite3, k:
|
|
955
|
-
static sqlite3_rekey_v2(db: sqlite3, name: utf8z, k:
|
|
1004
|
+
static sqlite3_rekey(db: sqlite3, k: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
1005
|
+
static sqlite3_rekey_v2(db: sqlite3, name: utf8z, k: ReadOnlySpan_1<System_Internal.Byte>): int;
|
|
956
1006
|
static sqlite3_reset(stmt: sqlite3_stmt): int;
|
|
957
|
-
static sqlite3_result_blob(context: sqlite3_context, val:
|
|
1007
|
+
static sqlite3_result_blob(context: sqlite3_context, val: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
958
1008
|
static sqlite3_result_double(context: sqlite3_context, val: double): void;
|
|
959
1009
|
static sqlite3_result_error(context: sqlite3_context, val: utf8z): void;
|
|
960
|
-
static sqlite3_result_error(context: sqlite3_context, val:
|
|
1010
|
+
static sqlite3_result_error(context: sqlite3_context, val: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
961
1011
|
static sqlite3_result_error(context: sqlite3_context, val: string): void;
|
|
962
1012
|
static sqlite3_result_error_code(context: sqlite3_context, code: int): void;
|
|
963
1013
|
static sqlite3_result_error_nomem(context: sqlite3_context): void;
|
|
@@ -966,7 +1016,7 @@ export abstract class raw$instance {
|
|
|
966
1016
|
static sqlite3_result_int64(context: sqlite3_context, val: long): void;
|
|
967
1017
|
static sqlite3_result_null(context: sqlite3_context): void;
|
|
968
1018
|
static sqlite3_result_text(context: sqlite3_context, val: utf8z): void;
|
|
969
|
-
static sqlite3_result_text(context: sqlite3_context, val:
|
|
1019
|
+
static sqlite3_result_text(context: sqlite3_context, val: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
970
1020
|
static sqlite3_result_text(context: sqlite3_context, val: string): void;
|
|
971
1021
|
static sqlite3_result_zeroblob(context: sqlite3_context, n: int): void;
|
|
972
1022
|
static sqlite3_rollback_hook(db: sqlite3, f: delegate_rollback, v: unknown): void;
|
|
@@ -997,7 +1047,7 @@ export abstract class raw$instance {
|
|
|
997
1047
|
static sqlite3_update_hook(db: sqlite3, f: delegate_update, v: unknown): void;
|
|
998
1048
|
static sqlite3_update_hook(db: sqlite3, f: strdelegate_update, v: unknown): void;
|
|
999
1049
|
static sqlite3_user_data(context: sqlite3_context): unknown;
|
|
1000
|
-
static sqlite3_value_blob(val: sqlite3_value):
|
|
1050
|
+
static sqlite3_value_blob(val: sqlite3_value): ReadOnlySpan_1<System_Internal.Byte>;
|
|
1001
1051
|
static sqlite3_value_bytes(val: sqlite3_value): int;
|
|
1002
1052
|
static sqlite3_value_double(val: sqlite3_value): double;
|
|
1003
1053
|
static sqlite3_value_int(val: sqlite3_value): int;
|
|
@@ -1008,7 +1058,7 @@ export abstract class raw$instance {
|
|
|
1008
1058
|
static sqlite3_wal_checkpoint(db: sqlite3, dbName: string): int;
|
|
1009
1059
|
static sqlite3_wal_checkpoint_v2(db: sqlite3, dbName: string, eMode: int, logSize: int, framesCheckPointed: int): int;
|
|
1010
1060
|
static sqlite3_win32_set_directory(typ: int, path: string): int;
|
|
1011
|
-
static utf8_span_to_string(p:
|
|
1061
|
+
static utf8_span_to_string(p: ReadOnlySpan_1<System_Internal.Byte>): string;
|
|
1012
1062
|
}
|
|
1013
1063
|
|
|
1014
1064
|
|
|
@@ -7,17 +7,17 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { RuntimeAssetGroup, RuntimeFile } from "../../Microsoft.Extensions.DependencyModel/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
12
|
-
import type { Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
10
|
+
import type { IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
11
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
12
|
+
import type { Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export abstract class CollectionExtensions$instance {
|
|
15
|
-
static GetDefaultAssets(self:
|
|
16
|
-
static GetDefaultGroup(self:
|
|
17
|
-
static GetDefaultRuntimeFileAssets(self:
|
|
18
|
-
static GetRuntimeAssets(self:
|
|
19
|
-
static GetRuntimeFileAssets(self:
|
|
20
|
-
static GetRuntimeGroup(self:
|
|
15
|
+
static GetDefaultAssets(self: IEnumerable_1<RuntimeAssetGroup>): IEnumerable_1<System_Internal.String>;
|
|
16
|
+
static GetDefaultGroup(self: IEnumerable_1<RuntimeAssetGroup>): RuntimeAssetGroup | undefined;
|
|
17
|
+
static GetDefaultRuntimeFileAssets(self: IEnumerable_1<RuntimeAssetGroup>): IEnumerable_1<RuntimeFile>;
|
|
18
|
+
static GetRuntimeAssets(self: IEnumerable_1<RuntimeAssetGroup>, runtime: string): IEnumerable_1<System_Internal.String>;
|
|
19
|
+
static GetRuntimeFileAssets(self: IEnumerable_1<RuntimeAssetGroup>, runtime: string): IEnumerable_1<RuntimeFile>;
|
|
20
|
+
static GetRuntimeGroup(self: IEnumerable_1<RuntimeAssetGroup>, runtime: string): RuntimeAssetGroup | undefined;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
|