@tsonic/efcore-sqlite 10.0.5 → 10.0.8
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 +130 -111
- 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
|
@@ -10,23 +10,23 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import type { sqlite3, sqlite3_stmt } from "../../SQLitePCL/internal/index.js";
|
|
13
|
-
import type {
|
|
14
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
15
|
-
import type { ICollection, IDictionary, IEnumerable, IEnumerator, IList } from "@tsonic/dotnet/System.Collections.js";
|
|
16
|
-
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
|
|
17
|
-
import type { IComponent, ICustomTypeDescriptor } from "@tsonic/dotnet/System.ComponentModel.js";
|
|
18
|
-
import * as System_Data_Common_Internal from "@tsonic/dotnet/System.Data.Common.js";
|
|
19
|
-
import type { DbCommand, DbConnection, DbConnectionStringBuilder, DbDataReader, DbException, DbParameter, DbParameterCollection, DbProviderFactory, DbTransaction } from "@tsonic/dotnet/System.Data.Common.js";
|
|
20
|
-
import * as System_Data_Internal from "@tsonic/dotnet/System.Data.js";
|
|
21
|
-
import type { CommandBehavior, CommandType, ConnectionState, DataTable, DbType, IDataParameter, IDataParameterCollection, IDataReader, IDataRecord, IDbCommand, IDbConnection, IDbDataParameter, IDbTransaction, IsolationLevel, ParameterDirection, UpdateRowSource } from "@tsonic/dotnet/System.Data.js";
|
|
22
|
-
import * as System_IO_Internal from "@tsonic/dotnet/System.IO.js";
|
|
23
|
-
import type { SeekOrigin, Stream, TextReader } from "@tsonic/dotnet/System.IO.js";
|
|
24
|
-
import * as
|
|
25
|
-
import type {
|
|
26
|
-
import
|
|
27
|
-
import type {
|
|
28
|
-
import
|
|
29
|
-
import type {
|
|
13
|
+
import type { IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
15
|
+
import type { ICollection, IDictionary, IEnumerable, IEnumerator, IList } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
17
|
+
import type { IComponent, ICustomTypeDescriptor } from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
18
|
+
import * as System_Data_Common_Internal from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
19
|
+
import type { DbCommand, DbConnection, DbConnectionStringBuilder, DbDataReader, DbException, DbParameter, DbParameterCollection, DbProviderFactory, DbTransaction } from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
20
|
+
import * as System_Data_Internal from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
21
|
+
import type { CommandBehavior, CommandType, ConnectionState, DataTable, DbType, IDataParameter, IDataParameterCollection, IDataReader, IDataRecord, IDbCommand, IDbConnection, IDbDataParameter, IDbTransaction, IsolationLevel, ParameterDirection, UpdateRowSource } from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
22
|
+
import * as System_IO_Internal from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
23
|
+
import type { SeekOrigin, Stream, TextReader } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
24
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
25
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
26
|
+
import type { Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
27
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
28
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
29
|
+
import type { Array as ClrArray, Boolean as ClrBoolean, Byte, Char, Comparison_1, DateTime, DateTimeOffset, Decimal, Double, Enum, Func_1, Func_10, Func_11, Func_12, Func_13, Func_14, Func_15, Func_16, Func_17, Func_2, Func_3, Func_4, Func_5, Func_6, Func_7, Func_8, Func_9, Guid, IAsyncDisposable, IComparable, IConvertible, IDisposable, IFormattable, Int16, Int32, Int64, ISpanFormattable, Nullable_1, Object as ClrObject, ReadOnlySpan_1, Single, Span_1, String as ClrString, TimeSpan, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
30
30
|
|
|
31
31
|
export enum SqliteCacheMode {
|
|
32
32
|
Default = 0,
|
|
@@ -52,6 +52,8 @@ export enum SqliteType {
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
export interface SqliteBlob$instance extends Stream {
|
|
55
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteBlob: never;
|
|
56
|
+
|
|
55
57
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
56
58
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
57
59
|
|
|
@@ -63,11 +65,11 @@ export interface SqliteBlob$instance extends Stream {
|
|
|
63
65
|
Dispose(disposing: boolean): void;
|
|
64
66
|
Flush(): void;
|
|
65
67
|
Read(buffer: byte[], offset: int, count: int): int;
|
|
66
|
-
Read(buffer:
|
|
68
|
+
Read(buffer: Span_1<System_Internal.Byte>): int;
|
|
67
69
|
Seek(offset: long, origin: SeekOrigin): long;
|
|
68
70
|
SetLength(value: long): void;
|
|
69
71
|
Write(buffer: byte[], offset: int, count: int): void;
|
|
70
|
-
Write(buffer:
|
|
72
|
+
Write(buffer: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
71
73
|
}
|
|
72
74
|
|
|
73
75
|
|
|
@@ -80,6 +82,8 @@ export const SqliteBlob: {
|
|
|
80
82
|
export type SqliteBlob = SqliteBlob$instance;
|
|
81
83
|
|
|
82
84
|
export interface SqliteCommand$instance extends DbCommand {
|
|
85
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteCommand: never;
|
|
86
|
+
|
|
83
87
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
84
88
|
readonly __tsonic_iface_System_Data_IDbCommand: never;
|
|
85
89
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
@@ -107,14 +111,14 @@ export interface SqliteCommand$instance extends DbCommand {
|
|
|
107
111
|
CreateParameter(): SqliteParameter;
|
|
108
112
|
Dispose(disposing: boolean): void;
|
|
109
113
|
ExecuteDbDataReader(behavior: CommandBehavior): DbDataReader;
|
|
110
|
-
ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken):
|
|
114
|
+
ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task_1<DbDataReader>;
|
|
111
115
|
ExecuteNonQuery(): int;
|
|
112
116
|
ExecuteReader(): SqliteDataReader;
|
|
113
117
|
ExecuteReader(behavior: CommandBehavior): SqliteDataReader;
|
|
114
|
-
ExecuteReaderAsync():
|
|
115
|
-
ExecuteReaderAsync(cancellationToken: CancellationToken):
|
|
116
|
-
ExecuteReaderAsync(behavior: CommandBehavior):
|
|
117
|
-
ExecuteReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken):
|
|
118
|
+
ExecuteReaderAsync(): Task_1<SqliteDataReader>;
|
|
119
|
+
ExecuteReaderAsync(cancellationToken: CancellationToken): Task_1<SqliteDataReader>;
|
|
120
|
+
ExecuteReaderAsync(behavior: CommandBehavior): Task_1<SqliteDataReader>;
|
|
121
|
+
ExecuteReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task_1<SqliteDataReader>;
|
|
118
122
|
ExecuteScalar(): unknown | undefined;
|
|
119
123
|
Prepare(): void;
|
|
120
124
|
}
|
|
@@ -131,6 +135,8 @@ export const SqliteCommand: {
|
|
|
131
135
|
export type SqliteCommand = SqliteCommand$instance;
|
|
132
136
|
|
|
133
137
|
export interface SqliteConnection$instance extends DbConnection {
|
|
138
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteConnection: never;
|
|
139
|
+
|
|
134
140
|
readonly __tsonic_iface_System_ComponentModel_IComponent: never;
|
|
135
141
|
readonly __tsonic_iface_System_Data_IDbConnection: never;
|
|
136
142
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
@@ -155,91 +161,91 @@ export interface SqliteConnection$instance extends DbConnection {
|
|
|
155
161
|
BeginTransaction(isolationLevel: IsolationLevel, deferred: boolean): SqliteTransaction;
|
|
156
162
|
ChangeDatabase(databaseName: string): void;
|
|
157
163
|
Close(): void;
|
|
158
|
-
CreateAggregate<TAccumulate>(name: string, func:
|
|
159
|
-
CreateAggregate<T1, TAccumulate>(name: string, func:
|
|
160
|
-
CreateAggregate<T1, T2, TAccumulate>(name: string, func:
|
|
161
|
-
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, func:
|
|
162
|
-
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, func:
|
|
163
|
-
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, func:
|
|
164
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, func:
|
|
165
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, func:
|
|
166
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, func:
|
|
167
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, func:
|
|
168
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, func:
|
|
169
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, func:
|
|
170
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, func:
|
|
171
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, func:
|
|
172
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, func:
|
|
173
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, func:
|
|
174
|
-
CreateAggregate<TAccumulate>(name: string, seed: TAccumulate, func:
|
|
175
|
-
CreateAggregate<T1, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
176
|
-
CreateAggregate<T1, T2, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
177
|
-
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
178
|
-
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
179
|
-
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
180
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
181
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
182
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
183
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
184
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
185
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
186
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
187
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
188
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
189
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, seed: TAccumulate, func:
|
|
190
|
-
CreateAggregate<TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
191
|
-
CreateAggregate<T1, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
192
|
-
CreateAggregate<T1, T2, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
193
|
-
CreateAggregate<T1, T2, T3, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
194
|
-
CreateAggregate<T1, T2, T3, T4, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
195
|
-
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
196
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
197
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
198
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
199
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
200
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
201
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
202
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
203
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
204
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
205
|
-
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate, TResult>(name: string, seed: TAccumulate, func:
|
|
206
|
-
CreateCollation(name: string, comparison:
|
|
207
|
-
CreateCollation<T>(name: string, state: T, comparison:
|
|
164
|
+
CreateAggregate<TAccumulate>(name: string, func: Func_2<TAccumulate, TAccumulate>, isDeterministic?: boolean): void;
|
|
165
|
+
CreateAggregate<T1, TAccumulate>(name: string, func: Func_3<TAccumulate, T1, TAccumulate>, isDeterministic?: boolean): void;
|
|
166
|
+
CreateAggregate<T1, T2, TAccumulate>(name: string, func: Func_4<TAccumulate, T1, T2, TAccumulate>, isDeterministic?: boolean): void;
|
|
167
|
+
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, func: Func_5<TAccumulate, T1, T2, T3, TAccumulate>, isDeterministic?: boolean): void;
|
|
168
|
+
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, func: Func_6<TAccumulate, T1, T2, T3, T4, TAccumulate>, isDeterministic?: boolean): void;
|
|
169
|
+
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, func: Func_7<TAccumulate, T1, T2, T3, T4, T5, TAccumulate>, isDeterministic?: boolean): void;
|
|
170
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, func: Func_8<TAccumulate, T1, T2, T3, T4, T5, T6, TAccumulate>, isDeterministic?: boolean): void;
|
|
171
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, func: Func_9<TAccumulate, T1, T2, T3, T4, T5, T6, T7, TAccumulate>, isDeterministic?: boolean): void;
|
|
172
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, func: Func_10<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>, isDeterministic?: boolean): void;
|
|
173
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, func: Func_11<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>, isDeterministic?: boolean): void;
|
|
174
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, func: Func_12<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>, isDeterministic?: boolean): void;
|
|
175
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, func: Func_13<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>, isDeterministic?: boolean): void;
|
|
176
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, func: Func_14<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>, isDeterministic?: boolean): void;
|
|
177
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, func: Func_15<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>, isDeterministic?: boolean): void;
|
|
178
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, func: Func_16<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>, isDeterministic?: boolean): void;
|
|
179
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, func: Func_17<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>, isDeterministic?: boolean): void;
|
|
180
|
+
CreateAggregate<TAccumulate>(name: string, seed: TAccumulate, func: Func_2<TAccumulate, TAccumulate>, isDeterministic?: boolean): void;
|
|
181
|
+
CreateAggregate<T1, TAccumulate>(name: string, seed: TAccumulate, func: Func_3<TAccumulate, T1, TAccumulate>, isDeterministic?: boolean): void;
|
|
182
|
+
CreateAggregate<T1, T2, TAccumulate>(name: string, seed: TAccumulate, func: Func_4<TAccumulate, T1, T2, TAccumulate>, isDeterministic?: boolean): void;
|
|
183
|
+
CreateAggregate<T1, T2, T3, TAccumulate>(name: string, seed: TAccumulate, func: Func_5<TAccumulate, T1, T2, T3, TAccumulate>, isDeterministic?: boolean): void;
|
|
184
|
+
CreateAggregate<T1, T2, T3, T4, TAccumulate>(name: string, seed: TAccumulate, func: Func_6<TAccumulate, T1, T2, T3, T4, TAccumulate>, isDeterministic?: boolean): void;
|
|
185
|
+
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate>(name: string, seed: TAccumulate, func: Func_7<TAccumulate, T1, T2, T3, T4, T5, TAccumulate>, isDeterministic?: boolean): void;
|
|
186
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate>(name: string, seed: TAccumulate, func: Func_8<TAccumulate, T1, T2, T3, T4, T5, T6, TAccumulate>, isDeterministic?: boolean): void;
|
|
187
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate>(name: string, seed: TAccumulate, func: Func_9<TAccumulate, T1, T2, T3, T4, T5, T6, T7, TAccumulate>, isDeterministic?: boolean): void;
|
|
188
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>(name: string, seed: TAccumulate, func: Func_10<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>, isDeterministic?: boolean): void;
|
|
189
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>(name: string, seed: TAccumulate, func: Func_11<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>, isDeterministic?: boolean): void;
|
|
190
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>(name: string, seed: TAccumulate, func: Func_12<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>, isDeterministic?: boolean): void;
|
|
191
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>(name: string, seed: TAccumulate, func: Func_13<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>, isDeterministic?: boolean): void;
|
|
192
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>(name: string, seed: TAccumulate, func: Func_14<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>, isDeterministic?: boolean): void;
|
|
193
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>(name: string, seed: TAccumulate, func: Func_15<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>, isDeterministic?: boolean): void;
|
|
194
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>(name: string, seed: TAccumulate, func: Func_16<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>, isDeterministic?: boolean): void;
|
|
195
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>(name: string, seed: TAccumulate, func: Func_17<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>, isDeterministic?: boolean): void;
|
|
196
|
+
CreateAggregate<TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_2<TAccumulate, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
197
|
+
CreateAggregate<T1, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_3<TAccumulate, T1, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
198
|
+
CreateAggregate<T1, T2, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_4<TAccumulate, T1, T2, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
199
|
+
CreateAggregate<T1, T2, T3, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_5<TAccumulate, T1, T2, T3, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
200
|
+
CreateAggregate<T1, T2, T3, T4, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_6<TAccumulate, T1, T2, T3, T4, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
201
|
+
CreateAggregate<T1, T2, T3, T4, T5, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_7<TAccumulate, T1, T2, T3, T4, T5, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
202
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_8<TAccumulate, T1, T2, T3, T4, T5, T6, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
203
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_9<TAccumulate, T1, T2, T3, T4, T5, T6, T7, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
204
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_10<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
205
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_11<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
206
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_12<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
207
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_13<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
208
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_14<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
209
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_15<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
210
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_16<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
211
|
+
CreateAggregate<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate, TResult>(name: string, seed: TAccumulate, func: Func_17<TAccumulate, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TAccumulate>, resultSelector: Func_2<TAccumulate, TResult>, isDeterministic?: boolean): void;
|
|
212
|
+
CreateCollation(name: string, comparison: Comparison_1<System_Internal.String>): void;
|
|
213
|
+
CreateCollation<T>(name: string, state: T, comparison: Func_4<T, System_Internal.String, System_Internal.String, System_Internal.Int32>): void;
|
|
208
214
|
CreateCommand(): SqliteCommand;
|
|
209
215
|
CreateDbCommand(): DbCommand;
|
|
210
|
-
CreateFunction<TResult>(name: string, function_:
|
|
211
|
-
CreateFunction<T1, TResult>(name: string, function_:
|
|
212
|
-
CreateFunction<T1, T2, TResult>(name: string, function_:
|
|
213
|
-
CreateFunction<T1, T2, T3, TResult>(name: string, function_:
|
|
214
|
-
CreateFunction<T1, T2, T3, T4, TResult>(name: string, function_:
|
|
215
|
-
CreateFunction<T1, T2, T3, T4, T5, TResult>(name: string, function_:
|
|
216
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, TResult>(name: string, function_:
|
|
217
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, function_:
|
|
218
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, function_:
|
|
219
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, function_:
|
|
220
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, function_:
|
|
221
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, function_:
|
|
222
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, function_:
|
|
223
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, function_:
|
|
224
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, function_:
|
|
225
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, function_:
|
|
226
|
-
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(name: string, function_:
|
|
227
|
-
CreateFunction<TState, TResult>(name: string, state: TState, function_:
|
|
228
|
-
CreateFunction<TState, T1, TResult>(name: string, state: TState, function_:
|
|
229
|
-
CreateFunction<TState, T1, T2, TResult>(name: string, state: TState, function_:
|
|
230
|
-
CreateFunction<TState, T1, T2, T3, TResult>(name: string, state: TState, function_:
|
|
231
|
-
CreateFunction<TState, T1, T2, T3, T4, TResult>(name: string, state: TState, function_:
|
|
232
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, TResult>(name: string, state: TState, function_:
|
|
233
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, TResult>(name: string, state: TState, function_:
|
|
234
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, state: TState, function_:
|
|
235
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, state: TState, function_:
|
|
236
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, state: TState, function_:
|
|
237
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, state: TState, function_:
|
|
238
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, state: TState, function_:
|
|
239
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, state: TState, function_:
|
|
240
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, state: TState, function_:
|
|
241
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, state: TState, function_:
|
|
242
|
-
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, state: TState, function_:
|
|
216
|
+
CreateFunction<TResult>(name: string, function_: Func_1<TResult>, isDeterministic?: boolean): void;
|
|
217
|
+
CreateFunction<T1, TResult>(name: string, function_: Func_2<T1, TResult>, isDeterministic?: boolean): void;
|
|
218
|
+
CreateFunction<T1, T2, TResult>(name: string, function_: Func_3<T1, T2, TResult>, isDeterministic?: boolean): void;
|
|
219
|
+
CreateFunction<T1, T2, T3, TResult>(name: string, function_: Func_4<T1, T2, T3, TResult>, isDeterministic?: boolean): void;
|
|
220
|
+
CreateFunction<T1, T2, T3, T4, TResult>(name: string, function_: Func_5<T1, T2, T3, T4, TResult>, isDeterministic?: boolean): void;
|
|
221
|
+
CreateFunction<T1, T2, T3, T4, T5, TResult>(name: string, function_: Func_6<T1, T2, T3, T4, T5, TResult>, isDeterministic?: boolean): void;
|
|
222
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, TResult>(name: string, function_: Func_7<T1, T2, T3, T4, T5, T6, TResult>, isDeterministic?: boolean): void;
|
|
223
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, function_: Func_8<T1, T2, T3, T4, T5, T6, T7, TResult>, isDeterministic?: boolean): void;
|
|
224
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, function_: Func_9<T1, T2, T3, T4, T5, T6, T7, T8, TResult>, isDeterministic?: boolean): void;
|
|
225
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, function_: Func_10<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>, isDeterministic?: boolean): void;
|
|
226
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, function_: Func_11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>, isDeterministic?: boolean): void;
|
|
227
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, function_: Func_12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>, isDeterministic?: boolean): void;
|
|
228
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, function_: Func_13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>, isDeterministic?: boolean): void;
|
|
229
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, function_: Func_14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>, isDeterministic?: boolean): void;
|
|
230
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, function_: Func_15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>, isDeterministic?: boolean): void;
|
|
231
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, function_: Func_16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>, isDeterministic?: boolean): void;
|
|
232
|
+
CreateFunction<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(name: string, function_: Func_17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>, isDeterministic?: boolean): void;
|
|
233
|
+
CreateFunction<TState, TResult>(name: string, state: TState, function_: Func_2<TState, TResult>, isDeterministic?: boolean): void;
|
|
234
|
+
CreateFunction<TState, T1, TResult>(name: string, state: TState, function_: Func_3<TState, T1, TResult>, isDeterministic?: boolean): void;
|
|
235
|
+
CreateFunction<TState, T1, T2, TResult>(name: string, state: TState, function_: Func_4<TState, T1, T2, TResult>, isDeterministic?: boolean): void;
|
|
236
|
+
CreateFunction<TState, T1, T2, T3, TResult>(name: string, state: TState, function_: Func_5<TState, T1, T2, T3, TResult>, isDeterministic?: boolean): void;
|
|
237
|
+
CreateFunction<TState, T1, T2, T3, T4, TResult>(name: string, state: TState, function_: Func_6<TState, T1, T2, T3, T4, TResult>, isDeterministic?: boolean): void;
|
|
238
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, TResult>(name: string, state: TState, function_: Func_7<TState, T1, T2, T3, T4, T5, TResult>, isDeterministic?: boolean): void;
|
|
239
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, TResult>(name: string, state: TState, function_: Func_8<TState, T1, T2, T3, T4, T5, T6, TResult>, isDeterministic?: boolean): void;
|
|
240
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, TResult>(name: string, state: TState, function_: Func_9<TState, T1, T2, T3, T4, T5, T6, T7, TResult>, isDeterministic?: boolean): void;
|
|
241
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, TResult>(name: string, state: TState, function_: Func_10<TState, T1, T2, T3, T4, T5, T6, T7, T8, TResult>, isDeterministic?: boolean): void;
|
|
242
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(name: string, state: TState, function_: Func_11<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>, isDeterministic?: boolean): void;
|
|
243
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(name: string, state: TState, function_: Func_12<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>, isDeterministic?: boolean): void;
|
|
244
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(name: string, state: TState, function_: Func_13<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>, isDeterministic?: boolean): void;
|
|
245
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(name: string, state: TState, function_: Func_14<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>, isDeterministic?: boolean): void;
|
|
246
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, state: TState, function_: Func_15<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>, isDeterministic?: boolean): void;
|
|
247
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, state: TState, function_: Func_16<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>, isDeterministic?: boolean): void;
|
|
248
|
+
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, state: TState, function_: Func_17<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>, isDeterministic?: boolean): void;
|
|
243
249
|
Dispose(disposing: boolean): void;
|
|
244
250
|
EnableExtensions(enable?: boolean): void;
|
|
245
251
|
GetSchema(): DataTable;
|
|
@@ -261,6 +267,8 @@ export const SqliteConnection: {
|
|
|
261
267
|
export type SqliteConnection = SqliteConnection$instance;
|
|
262
268
|
|
|
263
269
|
export interface SqliteConnectionStringBuilder$instance extends DbConnectionStringBuilder {
|
|
270
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteConnectionStringBuilder: never;
|
|
271
|
+
|
|
264
272
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
265
273
|
readonly __tsonic_iface_System_Collections_IDictionary: never;
|
|
266
274
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -269,8 +277,7 @@ export interface SqliteConnectionStringBuilder$instance extends DbConnectionStri
|
|
|
269
277
|
Cache: SqliteCacheMode;
|
|
270
278
|
DataSource: string;
|
|
271
279
|
DefaultTimeout: int;
|
|
272
|
-
ForeignKeys:
|
|
273
|
-
[keyword: string]: unknown | undefined;
|
|
280
|
+
ForeignKeys: Nullable_1<System_Internal.Boolean>;
|
|
274
281
|
readonly Keys: ICollection;
|
|
275
282
|
Mode: SqliteOpenMode;
|
|
276
283
|
Password: string;
|
|
@@ -293,9 +300,11 @@ export const SqliteConnectionStringBuilder: {
|
|
|
293
300
|
};
|
|
294
301
|
|
|
295
302
|
|
|
296
|
-
export type SqliteConnectionStringBuilder = SqliteConnectionStringBuilder$instance;
|
|
303
|
+
export type SqliteConnectionStringBuilder = SqliteConnectionStringBuilder$instance & { [keyword: string]: unknown | undefined; };
|
|
297
304
|
|
|
298
305
|
export interface SqliteDataReader$instance extends DbDataReader {
|
|
306
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteDataReader: never;
|
|
307
|
+
|
|
299
308
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
300
309
|
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
301
310
|
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
@@ -352,6 +361,8 @@ export const SqliteDataReader: {
|
|
|
352
361
|
export type SqliteDataReader = SqliteDataReader$instance;
|
|
353
362
|
|
|
354
363
|
export interface SqliteException$instance extends DbException {
|
|
364
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteException: never;
|
|
365
|
+
|
|
355
366
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
356
367
|
|
|
357
368
|
readonly SqliteErrorCode: int;
|
|
@@ -369,6 +380,8 @@ export const SqliteException: {
|
|
|
369
380
|
export type SqliteException = SqliteException$instance;
|
|
370
381
|
|
|
371
382
|
export interface SqliteFactory$instance extends DbProviderFactory {
|
|
383
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteFactory: never;
|
|
384
|
+
|
|
372
385
|
CreateCommand(): DbCommand;
|
|
373
386
|
CreateConnection(): DbConnection;
|
|
374
387
|
CreateConnectionStringBuilder(): DbConnectionStringBuilder;
|
|
@@ -384,6 +397,8 @@ export const SqliteFactory: {
|
|
|
384
397
|
export type SqliteFactory = SqliteFactory$instance;
|
|
385
398
|
|
|
386
399
|
export interface SqliteParameter$instance extends DbParameter {
|
|
400
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteParameter: never;
|
|
401
|
+
|
|
387
402
|
readonly __tsonic_iface_System_Data_IDataParameter: never;
|
|
388
403
|
readonly __tsonic_iface_System_Data_IDbDataParameter: never;
|
|
389
404
|
|
|
@@ -414,6 +429,8 @@ export const SqliteParameter: {
|
|
|
414
429
|
export type SqliteParameter = SqliteParameter$instance;
|
|
415
430
|
|
|
416
431
|
export interface SqliteParameterCollection$instance extends DbParameterCollection {
|
|
432
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteParameterCollection: never;
|
|
433
|
+
|
|
417
434
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
418
435
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
419
436
|
readonly __tsonic_iface_System_Collections_IList: never;
|
|
@@ -427,7 +444,7 @@ export interface SqliteParameterCollection$instance extends DbParameterCollectio
|
|
|
427
444
|
Add(parameterName: string, type: SqliteType, size: int): SqliteParameter;
|
|
428
445
|
Add(parameterName: string, type: SqliteType, size: int, sourceColumn: string): SqliteParameter;
|
|
429
446
|
AddRange(values: ClrArray): void;
|
|
430
|
-
AddRange(values:
|
|
447
|
+
AddRange(values: IEnumerable_1<SqliteParameter>): void;
|
|
431
448
|
AddWithValue(parameterName: string, value: unknown): SqliteParameter;
|
|
432
449
|
Clear(): void;
|
|
433
450
|
Contains(value: unknown): boolean;
|
|
@@ -463,6 +480,8 @@ export const SqliteParameterCollection: (abstract new() => SqliteParameterCollec
|
|
|
463
480
|
export type SqliteParameterCollection = SqliteParameterCollection$instance;
|
|
464
481
|
|
|
465
482
|
export interface SqliteTransaction$instance extends DbTransaction {
|
|
483
|
+
readonly __tsonic_type_Microsoft_Data_Sqlite_SqliteTransaction: never;
|
|
484
|
+
|
|
466
485
|
readonly __tsonic_iface_System_Data_IDbTransaction: never;
|
|
467
486
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
468
487
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
@@ -6,16 +6,18 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import type {
|
|
10
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
11
|
-
import type { Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System.js";
|
|
9
|
+
import type { IEqualityComparer_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
10
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
11
|
+
import type { Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface HashCodeCombiner$instance {
|
|
14
|
+
readonly __tsonic_type_Microsoft_DotNet_PlatformAbstractions_HashCodeCombiner: never;
|
|
15
|
+
|
|
14
16
|
readonly CombinedHash: int;
|
|
15
17
|
Add(i: int): void;
|
|
16
18
|
Add(s: string): void;
|
|
17
19
|
Add(o: unknown): void;
|
|
18
|
-
Add<TValue>(value: TValue, comparer:
|
|
20
|
+
Add<TValue>(value: TValue, comparer: IEqualityComparer_1<TValue>): void;
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
|