Documentation
¶
Index ¶
- type SQLiteClosableClient
- func (c *SQLiteClosableClient) AcquireReference(ctx context.Context) error
- func (c *SQLiteClosableClient) Close(ctx context.Context) error
- func (c *SQLiteClosableClient) ReleaseReference(ctx context.Context) error
- func (c *SQLiteClosableClient) ReleaseReferenceFromContainer(ctx context.Context) error
- type SQLiteCursorClient
- func (c *SQLiteCursorClient) Close(ctx context.Context, handle int64) error
- func (c *SQLiteCursorClient) Deactivate(ctx context.Context, handle int64) error
- func (c *SQLiteCursorClient) GetColumnIndex(ctx context.Context, handle int64, arg0 string) (int32, error)
- func (c *SQLiteCursorClient) GetColumnNames(ctx context.Context, handle int64) (int64, error)
- func (c *SQLiteCursorClient) GetCount(ctx context.Context, handle int64) (int32, error)
- func (c *SQLiteCursorClient) GetDatabase(ctx context.Context, handle int64) (int64, error)
- func (c *SQLiteCursorClient) OnMove(ctx context.Context, handle int64, arg0 int32, arg1 int32) (bool, error)
- func (c *SQLiteCursorClient) Requery(ctx context.Context, handle int64) (bool, error)
- func (c *SQLiteCursorClient) SetFillWindowForwardOnly(ctx context.Context, handle int64, arg0 bool) error
- func (c *SQLiteCursorClient) SetSelectionArguments(ctx context.Context, handle int64, arg0 int64) error
- func (c *SQLiteCursorClient) SetWindow(ctx context.Context, handle int64, arg0 int64) error
- type SQLiteCursorDriverClient
- func (c *SQLiteCursorDriverClient) CursorClosed(ctx context.Context) error
- func (c *SQLiteCursorDriverClient) CursorDeactivated(ctx context.Context) error
- func (c *SQLiteCursorDriverClient) CursorRequeried(ctx context.Context, arg0 int64) error
- func (c *SQLiteCursorDriverClient) Query(ctx context.Context, arg0 int64, arg1 int64) (int64, error)
- func (c *SQLiteCursorDriverClient) SetBindArguments(ctx context.Context, arg0 int64) error
- type SQLiteDatabaseClient
- func (c *SQLiteDatabaseClient) BeginTransaction(ctx context.Context) error
- func (c *SQLiteDatabaseClient) BeginTransactionNonExclusive(ctx context.Context) error
- func (c *SQLiteDatabaseClient) BeginTransactionReadOnly(ctx context.Context) error
- func (c *SQLiteDatabaseClient) BeginTransactionWithListener(ctx context.Context, arg0 int64) error
- func (c *SQLiteDatabaseClient) BeginTransactionWithListenerNonExclusive(ctx context.Context, arg0 int64) error
- func (c *SQLiteDatabaseClient) BeginTransactionWithListenerReadOnly(ctx context.Context, arg0 int64) error
- func (c *SQLiteDatabaseClient) CompileStatement(ctx context.Context, arg0 string) (int64, error)
- func (c *SQLiteDatabaseClient) Create(ctx context.Context, arg0 int64) (int64, error)
- func (c *SQLiteDatabaseClient) CreateInMemory(ctx context.Context, arg0 int64) (int64, error)
- func (c *SQLiteDatabaseClient) CreateRawStatement(ctx context.Context, arg0 string) (int64, error)
- func (c *SQLiteDatabaseClient) Delete(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int32, error)
- func (c *SQLiteDatabaseClient) DeleteDatabase(ctx context.Context, arg0 int64) (bool, error)
- func (c *SQLiteDatabaseClient) DisableWriteAheadLogging(ctx context.Context) error
- func (c *SQLiteDatabaseClient) EnableWriteAheadLogging(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) EndTransaction(ctx context.Context) error
- func (c *SQLiteDatabaseClient) ExecPerConnectionSQL(ctx context.Context, arg0 string, arg1 int64) error
- func (c *SQLiteDatabaseClient) ExecSQL1(ctx context.Context, arg0 string) error
- func (c *SQLiteDatabaseClient) ExecSQL2_1(ctx context.Context, arg0 string, arg1 int64) error
- func (c *SQLiteDatabaseClient) FindEditTable(ctx context.Context, arg0 string) (string, error)
- func (c *SQLiteDatabaseClient) GetLastChangedRowCount(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseClient) GetLastInsertRowId(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseClient) GetMaximumSize(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseClient) GetPageSize(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseClient) GetPath(ctx context.Context) (string, error)
- func (c *SQLiteDatabaseClient) GetTotalChangedRowCount(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseClient) GetVersion(ctx context.Context) (int32, error)
- func (c *SQLiteDatabaseClient) InTransaction(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) Insert(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
- func (c *SQLiteDatabaseClient) InsertOrThrow(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
- func (c *SQLiteDatabaseClient) InsertWithOnConflict(ctx context.Context, arg0 string, arg1 string, arg2 int64, arg3 int32) (int64, error)
- func (c *SQLiteDatabaseClient) IsDatabaseIntegrityOk(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) IsDbLockedByCurrentThread(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) IsDbLockedByOtherThreads(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) IsOpen(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) IsReadOnly(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) IsWriteAheadLoggingEnabled(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) MarkTableSyncable2(ctx context.Context, arg0 string, arg1 string) error
- func (c *SQLiteDatabaseClient) MarkTableSyncable3_1(ctx context.Context, arg0 string, arg1 string, arg2 string) error
- func (c *SQLiteDatabaseClient) NeedUpgrade(ctx context.Context, arg0 int32) (bool, error)
- func (c *SQLiteDatabaseClient) OpenDatabase2(ctx context.Context, arg0 int64, arg1 int64) (int64, error)
- func (c *SQLiteDatabaseClient) OpenDatabase3_1(ctx context.Context, arg0 string, arg1 int64, arg2 int32) (int64, error)
- func (c *SQLiteDatabaseClient) OpenOrCreateDatabase2(ctx context.Context, arg0 int64, arg1 int64) (int64, error)
- func (c *SQLiteDatabaseClient) OpenOrCreateDatabase2_1(ctx context.Context, arg0 string, arg1 int64) (int64, error)
- func (c *SQLiteDatabaseClient) Query7_2(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64, ...) (int64, error)
- func (c *SQLiteDatabaseClient) Query8_3(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64, ...) (int64, error)
- func (c *SQLiteDatabaseClient) Query9(ctx context.Context, arg0 bool, arg1 string, arg2 int64, arg3 string, ...) (int64, error)
- func (c *SQLiteDatabaseClient) Query10_1(ctx context.Context, arg0 bool, arg1 string, arg2 int64, arg3 string, ...) (int64, error)
- func (c *SQLiteDatabaseClient) QueryWithFactory10(ctx context.Context, arg0 int64, arg1 bool, arg2 string, arg3 int64, ...) (int64, error)
- func (c *SQLiteDatabaseClient) QueryWithFactory11_1(ctx context.Context, arg0 int64, arg1 bool, arg2 string, arg3 int64, ...) (int64, error)
- func (c *SQLiteDatabaseClient) RawQuery2(ctx context.Context, arg0 string, arg1 int64) (int64, error)
- func (c *SQLiteDatabaseClient) RawQuery3_1(ctx context.Context, arg0 string, arg1 int64, arg2 int64) (int64, error)
- func (c *SQLiteDatabaseClient) RawQueryWithFactory4(ctx context.Context, arg0 int64, arg1 string, arg2 int64, arg3 string) (int64, error)
- func (c *SQLiteDatabaseClient) RawQueryWithFactory5_1(ctx context.Context, arg0 int64, arg1 string, arg2 int64, arg3 string, ...) (int64, error)
- func (c *SQLiteDatabaseClient) ReleaseMemory(ctx context.Context) (int32, error)
- func (c *SQLiteDatabaseClient) Replace(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
- func (c *SQLiteDatabaseClient) ReplaceOrThrow(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
- func (c *SQLiteDatabaseClient) SetForeignKeyConstraintsEnabled(ctx context.Context, arg0 bool) error
- func (c *SQLiteDatabaseClient) SetLocale(ctx context.Context, arg0 int64) error
- func (c *SQLiteDatabaseClient) SetLockingEnabled(ctx context.Context, arg0 bool) error
- func (c *SQLiteDatabaseClient) SetMaxSqlCacheSize(ctx context.Context, arg0 int32) error
- func (c *SQLiteDatabaseClient) SetMaximumSize(ctx context.Context, arg0 int64) (int64, error)
- func (c *SQLiteDatabaseClient) SetPageSize(ctx context.Context, arg0 int64) error
- func (c *SQLiteDatabaseClient) SetTransactionSuccessful(ctx context.Context) error
- func (c *SQLiteDatabaseClient) SetVersion(ctx context.Context, arg0 int32) error
- func (c *SQLiteDatabaseClient) ToString(ctx context.Context) (string, error)
- func (c *SQLiteDatabaseClient) Update(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64) (int32, error)
- func (c *SQLiteDatabaseClient) UpdateWithOnConflict(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64, ...) (int32, error)
- func (c *SQLiteDatabaseClient) ValidateSql(ctx context.Context, arg0 string, arg1 int64) error
- func (c *SQLiteDatabaseClient) YieldIfContended(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) YieldIfContendedSafely0(ctx context.Context) (bool, error)
- func (c *SQLiteDatabaseClient) YieldIfContendedSafely1_1(ctx context.Context, arg0 int64) (bool, error)
- type SQLiteDatabaseCursorFactoryClient
- type SQLiteDatabaseOpenParamsClient
- func (c *SQLiteDatabaseOpenParamsClient) GetCursorFactory(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetErrorHandler(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetIdleConnectionTimeout(ctx context.Context) (int64, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetJournalMode(ctx context.Context) (string, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetLookasideSlotCount(ctx context.Context) (int32, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetLookasideSlotSize(ctx context.Context) (int32, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetOpenFlags(ctx context.Context) (int32, error)
- func (c *SQLiteDatabaseOpenParamsClient) GetSynchronousMode(ctx context.Context) (string, error)
- type SQLiteOpenHelperClient
- func (c *SQLiteOpenHelperClient) GetDatabaseName(ctx context.Context) (string, error)
- func (c *SQLiteOpenHelperClient) GetReadableDatabase(ctx context.Context) (int64, error)
- func (c *SQLiteOpenHelperClient) GetWritableDatabase(ctx context.Context) (int64, error)
- func (c *SQLiteOpenHelperClient) OnConfigure(ctx context.Context, arg0 int64) error
- func (c *SQLiteOpenHelperClient) OnCreate(ctx context.Context, arg0 int64) error
- func (c *SQLiteOpenHelperClient) OnDowngrade(ctx context.Context, arg0 int64, arg1 int32, arg2 int32) error
- func (c *SQLiteOpenHelperClient) OnOpen(ctx context.Context, arg0 int64) error
- func (c *SQLiteOpenHelperClient) OnUpgrade(ctx context.Context, arg0 int64, arg1 int32, arg2 int32) error
- func (c *SQLiteOpenHelperClient) SetIdleConnectionTimeout(ctx context.Context, arg0 int64) error
- func (c *SQLiteOpenHelperClient) SetLookasideConfig(ctx context.Context, arg0 int32, arg1 int32) error
- func (c *SQLiteOpenHelperClient) SetOpenParams(ctx context.Context, arg0 int64) error
- func (c *SQLiteOpenHelperClient) SetWriteAheadLoggingEnabled(ctx context.Context, arg0 bool) error
- type SQLiteProgramClient
- func (c *SQLiteProgramClient) BindAllArgsAsStrings(ctx context.Context, arg0 int64) error
- func (c *SQLiteProgramClient) BindBlob(ctx context.Context, arg0 int32, arg1 int64) error
- func (c *SQLiteProgramClient) BindDouble(ctx context.Context, arg0 int32, arg1 float64) error
- func (c *SQLiteProgramClient) BindLong(ctx context.Context, arg0 int32, arg1 int64) error
- func (c *SQLiteProgramClient) BindNull(ctx context.Context, arg0 int32) error
- func (c *SQLiteProgramClient) BindString(ctx context.Context, arg0 int32, arg1 string) error
- func (c *SQLiteProgramClient) ClearBindings(ctx context.Context) error
- func (c *SQLiteProgramClient) GetUniqueId(ctx context.Context) (int32, error)
- type SQLiteQueryBuilderClient
- func (c *SQLiteQueryBuilderClient) AppendColumns(ctx context.Context, handle int64, arg0 int64, arg1 int64) error
- func (c *SQLiteQueryBuilderClient) AppendWhere(ctx context.Context, handle int64, arg0 string) error
- func (c *SQLiteQueryBuilderClient) AppendWhereEscapeString(ctx context.Context, handle int64, arg0 string) error
- func (c *SQLiteQueryBuilderClient) AppendWhereStandalone(ctx context.Context, handle int64, arg0 string) error
- func (c *SQLiteQueryBuilderClient) BuildQuery6(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 string, ...) (string, error)
- func (c *SQLiteQueryBuilderClient) BuildQuery7_1(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 int64, ...) (string, error)
- func (c *SQLiteQueryBuilderClient) BuildQueryString(ctx context.Context, handle int64, arg0 bool, arg1 string, arg2 int64, ...) (string, error)
- func (c *SQLiteQueryBuilderClient) BuildUnionQuery(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 string) (string, error)
- func (c *SQLiteQueryBuilderClient) Delete(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 int64) (int32, error)
- func (c *SQLiteQueryBuilderClient) GetCursorFactory(ctx context.Context, handle int64) (int64, error)
- func (c *SQLiteQueryBuilderClient) GetProjectionGreylist(ctx context.Context, handle int64) (int64, error)
- func (c *SQLiteQueryBuilderClient) GetTables(ctx context.Context, handle int64) (string, error)
- func (c *SQLiteQueryBuilderClient) Insert(ctx context.Context, handle int64, arg0 int64, arg1 int64) (int64, error)
- func (c *SQLiteQueryBuilderClient) IsDistinct(ctx context.Context, handle int64) (bool, error)
- func (c *SQLiteQueryBuilderClient) IsStrict(ctx context.Context, handle int64) (bool, error)
- func (c *SQLiteQueryBuilderClient) IsStrictColumns(ctx context.Context, handle int64) (bool, error)
- func (c *SQLiteQueryBuilderClient) IsStrictGrammar(ctx context.Context, handle int64) (bool, error)
- func (c *SQLiteQueryBuilderClient) Query7(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, ...) (int64, error)
- func (c *SQLiteQueryBuilderClient) Query8_1(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, ...) (int64, error)
- func (c *SQLiteQueryBuilderClient) Query9_2(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, ...) (int64, error)
- func (c *SQLiteQueryBuilderClient) SetCursorFactory(ctx context.Context, handle int64, arg0 int64) error
- func (c *SQLiteQueryBuilderClient) SetDistinct(ctx context.Context, handle int64, arg0 bool) error
- func (c *SQLiteQueryBuilderClient) SetStrict(ctx context.Context, handle int64, arg0 bool) error
- func (c *SQLiteQueryBuilderClient) SetStrictColumns(ctx context.Context, handle int64, arg0 bool) error
- func (c *SQLiteQueryBuilderClient) SetStrictGrammar(ctx context.Context, handle int64, arg0 bool) error
- func (c *SQLiteQueryBuilderClient) SetTables(ctx context.Context, handle int64, arg0 string) error
- func (c *SQLiteQueryBuilderClient) Update(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, ...) (int32, error)
- type SQLiteQueryClient
- type SQLiteRawStatementClient
- func (c *SQLiteRawStatementClient) BindBlob2(ctx context.Context, arg0 int32, arg1 int64) error
- func (c *SQLiteRawStatementClient) BindBlob4_1(ctx context.Context, arg0 int32, arg1 int64, arg2 int32, arg3 int32) error
- func (c *SQLiteRawStatementClient) BindDouble(ctx context.Context, arg0 int32, arg1 float64) error
- func (c *SQLiteRawStatementClient) BindInt(ctx context.Context, arg0 int32, arg1 int32) error
- func (c *SQLiteRawStatementClient) BindLong(ctx context.Context, arg0 int32, arg1 int64) error
- func (c *SQLiteRawStatementClient) BindNull(ctx context.Context, arg0 int32) error
- func (c *SQLiteRawStatementClient) BindText(ctx context.Context, arg0 int32, arg1 string) error
- func (c *SQLiteRawStatementClient) ClearBindings(ctx context.Context) error
- func (c *SQLiteRawStatementClient) Close(ctx context.Context) error
- func (c *SQLiteRawStatementClient) GetColumnBlob(ctx context.Context, arg0 int32) (int64, error)
- func (c *SQLiteRawStatementClient) GetColumnDouble(ctx context.Context, arg0 int32) (float64, error)
- func (c *SQLiteRawStatementClient) GetColumnInt(ctx context.Context, arg0 int32) (int32, error)
- func (c *SQLiteRawStatementClient) GetColumnLength(ctx context.Context, arg0 int32) (int32, error)
- func (c *SQLiteRawStatementClient) GetColumnLong(ctx context.Context, arg0 int32) (int64, error)
- func (c *SQLiteRawStatementClient) GetColumnName(ctx context.Context, arg0 int32) (string, error)
- func (c *SQLiteRawStatementClient) GetColumnText(ctx context.Context, arg0 int32) (string, error)
- func (c *SQLiteRawStatementClient) GetColumnType(ctx context.Context, arg0 int32) (int32, error)
- func (c *SQLiteRawStatementClient) GetParameterCount(ctx context.Context) (int32, error)
- func (c *SQLiteRawStatementClient) GetParameterIndex(ctx context.Context, arg0 string) (int32, error)
- func (c *SQLiteRawStatementClient) GetParameterName(ctx context.Context, arg0 int32) (string, error)
- func (c *SQLiteRawStatementClient) GetResultColumnCount(ctx context.Context) (int32, error)
- func (c *SQLiteRawStatementClient) IsOpen(ctx context.Context) (bool, error)
- func (c *SQLiteRawStatementClient) ReadColumnBlob(ctx context.Context, arg0 int32, arg1 int64, arg2 int32, arg3 int32, ...) (int32, error)
- func (c *SQLiteRawStatementClient) Reset(ctx context.Context) error
- func (c *SQLiteRawStatementClient) Step(ctx context.Context) (bool, error)
- func (c *SQLiteRawStatementClient) ToString(ctx context.Context) (string, error)
- type SQLiteStatementClient
- func (c *SQLiteStatementClient) Execute(ctx context.Context) error
- func (c *SQLiteStatementClient) ExecuteInsert(ctx context.Context) (int64, error)
- func (c *SQLiteStatementClient) ExecuteUpdateDelete(ctx context.Context) (int32, error)
- func (c *SQLiteStatementClient) SimpleQueryForBlobFileDescriptor(ctx context.Context) (int64, error)
- func (c *SQLiteStatementClient) SimpleQueryForLong(ctx context.Context) (int64, error)
- func (c *SQLiteStatementClient) SimpleQueryForString(ctx context.Context) (string, error)
- func (c *SQLiteStatementClient) ToString(ctx context.Context) (string, error)
- type SQLiteTransactionListenerClient
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SQLiteClosableClient ¶
type SQLiteClosableClient struct {
// contains filtered or unexported fields
}
SQLiteClosableClient wraps the gRPC SQLiteClosableService client.
func NewSQLiteClosableClient ¶
func NewSQLiteClosableClient(cc grpc.ClientConnInterface) *SQLiteClosableClient
NewSQLiteClosableClient creates a new SQLiteClosable client.
func (*SQLiteClosableClient) AcquireReference ¶
func (c *SQLiteClosableClient) AcquireReference(ctx context.Context) error
AcquireReference calls the AcquireReference RPC.
func (*SQLiteClosableClient) Close ¶
func (c *SQLiteClosableClient) Close(ctx context.Context) error
Close calls the Close RPC.
func (*SQLiteClosableClient) ReleaseReference ¶
func (c *SQLiteClosableClient) ReleaseReference(ctx context.Context) error
ReleaseReference calls the ReleaseReference RPC.
func (*SQLiteClosableClient) ReleaseReferenceFromContainer ¶
func (c *SQLiteClosableClient) ReleaseReferenceFromContainer(ctx context.Context) error
ReleaseReferenceFromContainer calls the ReleaseReferenceFromContainer RPC.
type SQLiteCursorClient ¶
type SQLiteCursorClient struct {
// contains filtered or unexported fields
}
SQLiteCursorClient wraps the gRPC SQLiteCursorService client.
func NewSQLiteCursorClient ¶
func NewSQLiteCursorClient(cc grpc.ClientConnInterface) *SQLiteCursorClient
NewSQLiteCursorClient creates a new SQLiteCursor client.
func (*SQLiteCursorClient) Close ¶
func (c *SQLiteCursorClient) Close(ctx context.Context, handle int64) error
Close calls the Close RPC.
func (*SQLiteCursorClient) Deactivate ¶
func (c *SQLiteCursorClient) Deactivate(ctx context.Context, handle int64) error
Deactivate calls the Deactivate RPC.
func (*SQLiteCursorClient) GetColumnIndex ¶
func (c *SQLiteCursorClient) GetColumnIndex(ctx context.Context, handle int64, arg0 string) (int32, error)
GetColumnIndex calls the GetColumnIndex RPC.
func (*SQLiteCursorClient) GetColumnNames ¶
GetColumnNames calls the GetColumnNames RPC.
func (*SQLiteCursorClient) GetDatabase ¶
GetDatabase calls the GetDatabase RPC.
func (*SQLiteCursorClient) OnMove ¶
func (c *SQLiteCursorClient) OnMove(ctx context.Context, handle int64, arg0 int32, arg1 int32) (bool, error)
OnMove calls the OnMove RPC.
func (*SQLiteCursorClient) SetFillWindowForwardOnly ¶
func (c *SQLiteCursorClient) SetFillWindowForwardOnly(ctx context.Context, handle int64, arg0 bool) error
SetFillWindowForwardOnly calls the SetFillWindowForwardOnly RPC.
func (*SQLiteCursorClient) SetSelectionArguments ¶
func (c *SQLiteCursorClient) SetSelectionArguments(ctx context.Context, handle int64, arg0 int64) error
SetSelectionArguments calls the SetSelectionArguments RPC.
type SQLiteCursorDriverClient ¶
type SQLiteCursorDriverClient struct {
// contains filtered or unexported fields
}
SQLiteCursorDriverClient wraps the gRPC SQLiteCursorDriverService client.
func NewSQLiteCursorDriverClient ¶
func NewSQLiteCursorDriverClient(cc grpc.ClientConnInterface) *SQLiteCursorDriverClient
NewSQLiteCursorDriverClient creates a new SQLiteCursorDriver client.
func (*SQLiteCursorDriverClient) CursorClosed ¶
func (c *SQLiteCursorDriverClient) CursorClosed(ctx context.Context) error
CursorClosed calls the CursorClosed RPC.
func (*SQLiteCursorDriverClient) CursorDeactivated ¶
func (c *SQLiteCursorDriverClient) CursorDeactivated(ctx context.Context) error
CursorDeactivated calls the CursorDeactivated RPC.
func (*SQLiteCursorDriverClient) CursorRequeried ¶
func (c *SQLiteCursorDriverClient) CursorRequeried(ctx context.Context, arg0 int64) error
CursorRequeried calls the CursorRequeried RPC.
func (*SQLiteCursorDriverClient) Query ¶
func (c *SQLiteCursorDriverClient) Query(ctx context.Context, arg0 int64, arg1 int64) (int64, error)
Query calls the Query RPC.
func (*SQLiteCursorDriverClient) SetBindArguments ¶
func (c *SQLiteCursorDriverClient) SetBindArguments(ctx context.Context, arg0 int64) error
SetBindArguments calls the SetBindArguments RPC.
type SQLiteDatabaseClient ¶
type SQLiteDatabaseClient struct {
// contains filtered or unexported fields
}
SQLiteDatabaseClient wraps the gRPC SQLiteDatabaseService client.
func NewSQLiteDatabaseClient ¶
func NewSQLiteDatabaseClient(cc grpc.ClientConnInterface) *SQLiteDatabaseClient
NewSQLiteDatabaseClient creates a new SQLiteDatabase client.
func (*SQLiteDatabaseClient) BeginTransaction ¶
func (c *SQLiteDatabaseClient) BeginTransaction(ctx context.Context) error
BeginTransaction calls the BeginTransaction RPC.
func (*SQLiteDatabaseClient) BeginTransactionNonExclusive ¶
func (c *SQLiteDatabaseClient) BeginTransactionNonExclusive(ctx context.Context) error
BeginTransactionNonExclusive calls the BeginTransactionNonExclusive RPC.
func (*SQLiteDatabaseClient) BeginTransactionReadOnly ¶
func (c *SQLiteDatabaseClient) BeginTransactionReadOnly(ctx context.Context) error
BeginTransactionReadOnly calls the BeginTransactionReadOnly RPC.
func (*SQLiteDatabaseClient) BeginTransactionWithListener ¶
func (c *SQLiteDatabaseClient) BeginTransactionWithListener(ctx context.Context, arg0 int64) error
BeginTransactionWithListener calls the BeginTransactionWithListener RPC.
func (*SQLiteDatabaseClient) BeginTransactionWithListenerNonExclusive ¶
func (c *SQLiteDatabaseClient) BeginTransactionWithListenerNonExclusive(ctx context.Context, arg0 int64) error
BeginTransactionWithListenerNonExclusive calls the BeginTransactionWithListenerNonExclusive RPC.
func (*SQLiteDatabaseClient) BeginTransactionWithListenerReadOnly ¶
func (c *SQLiteDatabaseClient) BeginTransactionWithListenerReadOnly(ctx context.Context, arg0 int64) error
BeginTransactionWithListenerReadOnly calls the BeginTransactionWithListenerReadOnly RPC.
func (*SQLiteDatabaseClient) CompileStatement ¶
CompileStatement calls the CompileStatement RPC.
func (*SQLiteDatabaseClient) CreateInMemory ¶
CreateInMemory calls the CreateInMemory RPC.
func (*SQLiteDatabaseClient) CreateRawStatement ¶
CreateRawStatement calls the CreateRawStatement RPC.
func (*SQLiteDatabaseClient) Delete ¶
func (c *SQLiteDatabaseClient) Delete(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int32, error)
Delete calls the Delete RPC.
func (*SQLiteDatabaseClient) DeleteDatabase ¶
DeleteDatabase calls the DeleteDatabase RPC.
func (*SQLiteDatabaseClient) DisableWriteAheadLogging ¶
func (c *SQLiteDatabaseClient) DisableWriteAheadLogging(ctx context.Context) error
DisableWriteAheadLogging calls the DisableWriteAheadLogging RPC.
func (*SQLiteDatabaseClient) EnableWriteAheadLogging ¶
func (c *SQLiteDatabaseClient) EnableWriteAheadLogging(ctx context.Context) (bool, error)
EnableWriteAheadLogging calls the EnableWriteAheadLogging RPC.
func (*SQLiteDatabaseClient) EndTransaction ¶
func (c *SQLiteDatabaseClient) EndTransaction(ctx context.Context) error
EndTransaction calls the EndTransaction RPC.
func (*SQLiteDatabaseClient) ExecPerConnectionSQL ¶
func (c *SQLiteDatabaseClient) ExecPerConnectionSQL(ctx context.Context, arg0 string, arg1 int64) error
ExecPerConnectionSQL calls the ExecPerConnectionSQL RPC.
func (*SQLiteDatabaseClient) ExecSQL1 ¶
func (c *SQLiteDatabaseClient) ExecSQL1(ctx context.Context, arg0 string) error
ExecSQL1 calls the ExecSQL1 RPC.
func (*SQLiteDatabaseClient) ExecSQL2_1 ¶
ExecSQL2_1 calls the ExecSQL2_1 RPC.
func (*SQLiteDatabaseClient) FindEditTable ¶
FindEditTable calls the FindEditTable RPC.
func (*SQLiteDatabaseClient) GetLastChangedRowCount ¶
func (c *SQLiteDatabaseClient) GetLastChangedRowCount(ctx context.Context) (int64, error)
GetLastChangedRowCount calls the GetLastChangedRowCount RPC.
func (*SQLiteDatabaseClient) GetLastInsertRowId ¶
func (c *SQLiteDatabaseClient) GetLastInsertRowId(ctx context.Context) (int64, error)
GetLastInsertRowId calls the GetLastInsertRowId RPC.
func (*SQLiteDatabaseClient) GetMaximumSize ¶
func (c *SQLiteDatabaseClient) GetMaximumSize(ctx context.Context) (int64, error)
GetMaximumSize calls the GetMaximumSize RPC.
func (*SQLiteDatabaseClient) GetPageSize ¶
func (c *SQLiteDatabaseClient) GetPageSize(ctx context.Context) (int64, error)
GetPageSize calls the GetPageSize RPC.
func (*SQLiteDatabaseClient) GetPath ¶
func (c *SQLiteDatabaseClient) GetPath(ctx context.Context) (string, error)
GetPath calls the GetPath RPC.
func (*SQLiteDatabaseClient) GetTotalChangedRowCount ¶
func (c *SQLiteDatabaseClient) GetTotalChangedRowCount(ctx context.Context) (int64, error)
GetTotalChangedRowCount calls the GetTotalChangedRowCount RPC.
func (*SQLiteDatabaseClient) GetVersion ¶
func (c *SQLiteDatabaseClient) GetVersion(ctx context.Context) (int32, error)
GetVersion calls the GetVersion RPC.
func (*SQLiteDatabaseClient) InTransaction ¶
func (c *SQLiteDatabaseClient) InTransaction(ctx context.Context) (bool, error)
InTransaction calls the InTransaction RPC.
func (*SQLiteDatabaseClient) Insert ¶
func (c *SQLiteDatabaseClient) Insert(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
Insert calls the Insert RPC.
func (*SQLiteDatabaseClient) InsertOrThrow ¶
func (c *SQLiteDatabaseClient) InsertOrThrow(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
InsertOrThrow calls the InsertOrThrow RPC.
func (*SQLiteDatabaseClient) InsertWithOnConflict ¶
func (c *SQLiteDatabaseClient) InsertWithOnConflict(ctx context.Context, arg0 string, arg1 string, arg2 int64, arg3 int32) (int64, error)
InsertWithOnConflict calls the InsertWithOnConflict RPC.
func (*SQLiteDatabaseClient) IsDatabaseIntegrityOk ¶
func (c *SQLiteDatabaseClient) IsDatabaseIntegrityOk(ctx context.Context) (bool, error)
IsDatabaseIntegrityOk calls the IsDatabaseIntegrityOk RPC.
func (*SQLiteDatabaseClient) IsDbLockedByCurrentThread ¶
func (c *SQLiteDatabaseClient) IsDbLockedByCurrentThread(ctx context.Context) (bool, error)
IsDbLockedByCurrentThread calls the IsDbLockedByCurrentThread RPC.
func (*SQLiteDatabaseClient) IsDbLockedByOtherThreads ¶
func (c *SQLiteDatabaseClient) IsDbLockedByOtherThreads(ctx context.Context) (bool, error)
IsDbLockedByOtherThreads calls the IsDbLockedByOtherThreads RPC.
func (*SQLiteDatabaseClient) IsOpen ¶
func (c *SQLiteDatabaseClient) IsOpen(ctx context.Context) (bool, error)
IsOpen calls the IsOpen RPC.
func (*SQLiteDatabaseClient) IsReadOnly ¶
func (c *SQLiteDatabaseClient) IsReadOnly(ctx context.Context) (bool, error)
IsReadOnly calls the IsReadOnly RPC.
func (*SQLiteDatabaseClient) IsWriteAheadLoggingEnabled ¶
func (c *SQLiteDatabaseClient) IsWriteAheadLoggingEnabled(ctx context.Context) (bool, error)
IsWriteAheadLoggingEnabled calls the IsWriteAheadLoggingEnabled RPC.
func (*SQLiteDatabaseClient) MarkTableSyncable2 ¶
func (c *SQLiteDatabaseClient) MarkTableSyncable2(ctx context.Context, arg0 string, arg1 string) error
MarkTableSyncable2 calls the MarkTableSyncable2 RPC.
func (*SQLiteDatabaseClient) MarkTableSyncable3_1 ¶
func (c *SQLiteDatabaseClient) MarkTableSyncable3_1(ctx context.Context, arg0 string, arg1 string, arg2 string) error
MarkTableSyncable3_1 calls the MarkTableSyncable3_1 RPC.
func (*SQLiteDatabaseClient) NeedUpgrade ¶
NeedUpgrade calls the NeedUpgrade RPC.
func (*SQLiteDatabaseClient) OpenDatabase2 ¶
func (c *SQLiteDatabaseClient) OpenDatabase2(ctx context.Context, arg0 int64, arg1 int64) (int64, error)
OpenDatabase2 calls the OpenDatabase2 RPC.
func (*SQLiteDatabaseClient) OpenDatabase3_1 ¶
func (c *SQLiteDatabaseClient) OpenDatabase3_1(ctx context.Context, arg0 string, arg1 int64, arg2 int32) (int64, error)
OpenDatabase3_1 calls the OpenDatabase3_1 RPC.
func (*SQLiteDatabaseClient) OpenOrCreateDatabase2 ¶
func (c *SQLiteDatabaseClient) OpenOrCreateDatabase2(ctx context.Context, arg0 int64, arg1 int64) (int64, error)
OpenOrCreateDatabase2 calls the OpenOrCreateDatabase2 RPC.
func (*SQLiteDatabaseClient) OpenOrCreateDatabase2_1 ¶
func (c *SQLiteDatabaseClient) OpenOrCreateDatabase2_1(ctx context.Context, arg0 string, arg1 int64) (int64, error)
OpenOrCreateDatabase2_1 calls the OpenOrCreateDatabase2_1 RPC.
func (*SQLiteDatabaseClient) Query7_2 ¶
func (c *SQLiteDatabaseClient) Query7_2(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64, arg4 string, arg5 string, arg6 string) (int64, error)
Query7_2 calls the Query7_2 RPC.
func (*SQLiteDatabaseClient) Query8_3 ¶
func (c *SQLiteDatabaseClient) Query8_3(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64, arg4 string, arg5 string, arg6 string, arg7 string) (int64, error)
Query8_3 calls the Query8_3 RPC.
func (*SQLiteDatabaseClient) Query9 ¶
func (c *SQLiteDatabaseClient) Query9(ctx context.Context, arg0 bool, arg1 string, arg2 int64, arg3 string, arg4 int64, arg5 string, arg6 string, arg7 string, arg8 string) (int64, error)
Query9 calls the Query9 RPC.
func (*SQLiteDatabaseClient) Query10_1 ¶
func (c *SQLiteDatabaseClient) Query10_1(ctx context.Context, arg0 bool, arg1 string, arg2 int64, arg3 string, arg4 int64, arg5 string, arg6 string, arg7 string, arg8 string, arg9 int64) (int64, error)
Query10_1 calls the Query10_1 RPC.
func (*SQLiteDatabaseClient) QueryWithFactory10 ¶
func (c *SQLiteDatabaseClient) QueryWithFactory10(ctx context.Context, arg0 int64, arg1 bool, arg2 string, arg3 int64, arg4 string, arg5 int64, arg6 string, arg7 string, arg8 string, arg9 string) (int64, error)
QueryWithFactory10 calls the QueryWithFactory10 RPC.
func (*SQLiteDatabaseClient) QueryWithFactory11_1 ¶
func (c *SQLiteDatabaseClient) QueryWithFactory11_1(ctx context.Context, arg0 int64, arg1 bool, arg2 string, arg3 int64, arg4 string, arg5 int64, arg6 string, arg7 string, arg8 string, arg9 string, arg10 int64) (int64, error)
QueryWithFactory11_1 calls the QueryWithFactory11_1 RPC.
func (*SQLiteDatabaseClient) RawQuery2 ¶
func (c *SQLiteDatabaseClient) RawQuery2(ctx context.Context, arg0 string, arg1 int64) (int64, error)
RawQuery2 calls the RawQuery2 RPC.
func (*SQLiteDatabaseClient) RawQuery3_1 ¶
func (c *SQLiteDatabaseClient) RawQuery3_1(ctx context.Context, arg0 string, arg1 int64, arg2 int64) (int64, error)
RawQuery3_1 calls the RawQuery3_1 RPC.
func (*SQLiteDatabaseClient) RawQueryWithFactory4 ¶
func (c *SQLiteDatabaseClient) RawQueryWithFactory4(ctx context.Context, arg0 int64, arg1 string, arg2 int64, arg3 string) (int64, error)
RawQueryWithFactory4 calls the RawQueryWithFactory4 RPC.
func (*SQLiteDatabaseClient) RawQueryWithFactory5_1 ¶
func (c *SQLiteDatabaseClient) RawQueryWithFactory5_1(ctx context.Context, arg0 int64, arg1 string, arg2 int64, arg3 string, arg4 int64) (int64, error)
RawQueryWithFactory5_1 calls the RawQueryWithFactory5_1 RPC.
func (*SQLiteDatabaseClient) ReleaseMemory ¶
func (c *SQLiteDatabaseClient) ReleaseMemory(ctx context.Context) (int32, error)
ReleaseMemory calls the ReleaseMemory RPC.
func (*SQLiteDatabaseClient) Replace ¶
func (c *SQLiteDatabaseClient) Replace(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
Replace calls the Replace RPC.
func (*SQLiteDatabaseClient) ReplaceOrThrow ¶
func (c *SQLiteDatabaseClient) ReplaceOrThrow(ctx context.Context, arg0 string, arg1 string, arg2 int64) (int64, error)
ReplaceOrThrow calls the ReplaceOrThrow RPC.
func (*SQLiteDatabaseClient) SetForeignKeyConstraintsEnabled ¶
func (c *SQLiteDatabaseClient) SetForeignKeyConstraintsEnabled(ctx context.Context, arg0 bool) error
SetForeignKeyConstraintsEnabled calls the SetForeignKeyConstraintsEnabled RPC.
func (*SQLiteDatabaseClient) SetLocale ¶
func (c *SQLiteDatabaseClient) SetLocale(ctx context.Context, arg0 int64) error
SetLocale calls the SetLocale RPC.
func (*SQLiteDatabaseClient) SetLockingEnabled ¶
func (c *SQLiteDatabaseClient) SetLockingEnabled(ctx context.Context, arg0 bool) error
SetLockingEnabled calls the SetLockingEnabled RPC.
func (*SQLiteDatabaseClient) SetMaxSqlCacheSize ¶
func (c *SQLiteDatabaseClient) SetMaxSqlCacheSize(ctx context.Context, arg0 int32) error
SetMaxSqlCacheSize calls the SetMaxSqlCacheSize RPC.
func (*SQLiteDatabaseClient) SetMaximumSize ¶
SetMaximumSize calls the SetMaximumSize RPC.
func (*SQLiteDatabaseClient) SetPageSize ¶
func (c *SQLiteDatabaseClient) SetPageSize(ctx context.Context, arg0 int64) error
SetPageSize calls the SetPageSize RPC.
func (*SQLiteDatabaseClient) SetTransactionSuccessful ¶
func (c *SQLiteDatabaseClient) SetTransactionSuccessful(ctx context.Context) error
SetTransactionSuccessful calls the SetTransactionSuccessful RPC.
func (*SQLiteDatabaseClient) SetVersion ¶
func (c *SQLiteDatabaseClient) SetVersion(ctx context.Context, arg0 int32) error
SetVersion calls the SetVersion RPC.
func (*SQLiteDatabaseClient) ToString ¶
func (c *SQLiteDatabaseClient) ToString(ctx context.Context) (string, error)
ToString calls the ToString RPC.
func (*SQLiteDatabaseClient) Update ¶
func (c *SQLiteDatabaseClient) Update(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64) (int32, error)
Update calls the Update RPC.
func (*SQLiteDatabaseClient) UpdateWithOnConflict ¶
func (c *SQLiteDatabaseClient) UpdateWithOnConflict(ctx context.Context, arg0 string, arg1 int64, arg2 string, arg3 int64, arg4 int32) (int32, error)
UpdateWithOnConflict calls the UpdateWithOnConflict RPC.
func (*SQLiteDatabaseClient) ValidateSql ¶
ValidateSql calls the ValidateSql RPC.
func (*SQLiteDatabaseClient) YieldIfContended ¶
func (c *SQLiteDatabaseClient) YieldIfContended(ctx context.Context) (bool, error)
YieldIfContended calls the YieldIfContended RPC.
func (*SQLiteDatabaseClient) YieldIfContendedSafely0 ¶
func (c *SQLiteDatabaseClient) YieldIfContendedSafely0(ctx context.Context) (bool, error)
YieldIfContendedSafely0 calls the YieldIfContendedSafely0 RPC.
func (*SQLiteDatabaseClient) YieldIfContendedSafely1_1 ¶
func (c *SQLiteDatabaseClient) YieldIfContendedSafely1_1(ctx context.Context, arg0 int64) (bool, error)
YieldIfContendedSafely1_1 calls the YieldIfContendedSafely1_1 RPC.
type SQLiteDatabaseCursorFactoryClient ¶
type SQLiteDatabaseCursorFactoryClient struct {
// contains filtered or unexported fields
}
SQLiteDatabaseCursorFactoryClient wraps the gRPC SQLiteDatabaseCursorFactoryService client.
func NewSQLiteDatabaseCursorFactoryClient ¶
func NewSQLiteDatabaseCursorFactoryClient(cc grpc.ClientConnInterface) *SQLiteDatabaseCursorFactoryClient
NewSQLiteDatabaseCursorFactoryClient creates a new SQLiteDatabaseCursorFactory client.
type SQLiteDatabaseOpenParamsClient ¶
type SQLiteDatabaseOpenParamsClient struct {
// contains filtered or unexported fields
}
SQLiteDatabaseOpenParamsClient wraps the gRPC SQLiteDatabaseOpenParamsService client.
func NewSQLiteDatabaseOpenParamsClient ¶
func NewSQLiteDatabaseOpenParamsClient(cc grpc.ClientConnInterface) *SQLiteDatabaseOpenParamsClient
NewSQLiteDatabaseOpenParamsClient creates a new SQLiteDatabaseOpenParams client.
func (*SQLiteDatabaseOpenParamsClient) GetCursorFactory ¶
func (c *SQLiteDatabaseOpenParamsClient) GetCursorFactory(ctx context.Context) (int64, error)
GetCursorFactory calls the GetCursorFactory RPC.
func (*SQLiteDatabaseOpenParamsClient) GetErrorHandler ¶
func (c *SQLiteDatabaseOpenParamsClient) GetErrorHandler(ctx context.Context) (int64, error)
GetErrorHandler calls the GetErrorHandler RPC.
func (*SQLiteDatabaseOpenParamsClient) GetIdleConnectionTimeout ¶
func (c *SQLiteDatabaseOpenParamsClient) GetIdleConnectionTimeout(ctx context.Context) (int64, error)
GetIdleConnectionTimeout calls the GetIdleConnectionTimeout RPC.
func (*SQLiteDatabaseOpenParamsClient) GetJournalMode ¶
func (c *SQLiteDatabaseOpenParamsClient) GetJournalMode(ctx context.Context) (string, error)
GetJournalMode calls the GetJournalMode RPC.
func (*SQLiteDatabaseOpenParamsClient) GetLookasideSlotCount ¶
func (c *SQLiteDatabaseOpenParamsClient) GetLookasideSlotCount(ctx context.Context) (int32, error)
GetLookasideSlotCount calls the GetLookasideSlotCount RPC.
func (*SQLiteDatabaseOpenParamsClient) GetLookasideSlotSize ¶
func (c *SQLiteDatabaseOpenParamsClient) GetLookasideSlotSize(ctx context.Context) (int32, error)
GetLookasideSlotSize calls the GetLookasideSlotSize RPC.
func (*SQLiteDatabaseOpenParamsClient) GetOpenFlags ¶
func (c *SQLiteDatabaseOpenParamsClient) GetOpenFlags(ctx context.Context) (int32, error)
GetOpenFlags calls the GetOpenFlags RPC.
func (*SQLiteDatabaseOpenParamsClient) GetSynchronousMode ¶
func (c *SQLiteDatabaseOpenParamsClient) GetSynchronousMode(ctx context.Context) (string, error)
GetSynchronousMode calls the GetSynchronousMode RPC.
type SQLiteOpenHelperClient ¶
type SQLiteOpenHelperClient struct {
// contains filtered or unexported fields
}
SQLiteOpenHelperClient wraps the gRPC SQLiteOpenHelperService client.
func NewSQLiteOpenHelperClient ¶
func NewSQLiteOpenHelperClient(cc grpc.ClientConnInterface) *SQLiteOpenHelperClient
NewSQLiteOpenHelperClient creates a new SQLiteOpenHelper client.
func (*SQLiteOpenHelperClient) GetDatabaseName ¶
func (c *SQLiteOpenHelperClient) GetDatabaseName(ctx context.Context) (string, error)
GetDatabaseName calls the GetDatabaseName RPC.
func (*SQLiteOpenHelperClient) GetReadableDatabase ¶
func (c *SQLiteOpenHelperClient) GetReadableDatabase(ctx context.Context) (int64, error)
GetReadableDatabase calls the GetReadableDatabase RPC.
func (*SQLiteOpenHelperClient) GetWritableDatabase ¶
func (c *SQLiteOpenHelperClient) GetWritableDatabase(ctx context.Context) (int64, error)
GetWritableDatabase calls the GetWritableDatabase RPC.
func (*SQLiteOpenHelperClient) OnConfigure ¶
func (c *SQLiteOpenHelperClient) OnConfigure(ctx context.Context, arg0 int64) error
OnConfigure calls the OnConfigure RPC.
func (*SQLiteOpenHelperClient) OnCreate ¶
func (c *SQLiteOpenHelperClient) OnCreate(ctx context.Context, arg0 int64) error
OnCreate calls the OnCreate RPC.
func (*SQLiteOpenHelperClient) OnDowngrade ¶
func (c *SQLiteOpenHelperClient) OnDowngrade(ctx context.Context, arg0 int64, arg1 int32, arg2 int32) error
OnDowngrade calls the OnDowngrade RPC.
func (*SQLiteOpenHelperClient) OnOpen ¶
func (c *SQLiteOpenHelperClient) OnOpen(ctx context.Context, arg0 int64) error
OnOpen calls the OnOpen RPC.
func (*SQLiteOpenHelperClient) OnUpgrade ¶
func (c *SQLiteOpenHelperClient) OnUpgrade(ctx context.Context, arg0 int64, arg1 int32, arg2 int32) error
OnUpgrade calls the OnUpgrade RPC.
func (*SQLiteOpenHelperClient) SetIdleConnectionTimeout ¶
func (c *SQLiteOpenHelperClient) SetIdleConnectionTimeout(ctx context.Context, arg0 int64) error
SetIdleConnectionTimeout calls the SetIdleConnectionTimeout RPC.
func (*SQLiteOpenHelperClient) SetLookasideConfig ¶
func (c *SQLiteOpenHelperClient) SetLookasideConfig(ctx context.Context, arg0 int32, arg1 int32) error
SetLookasideConfig calls the SetLookasideConfig RPC.
func (*SQLiteOpenHelperClient) SetOpenParams ¶
func (c *SQLiteOpenHelperClient) SetOpenParams(ctx context.Context, arg0 int64) error
SetOpenParams calls the SetOpenParams RPC.
func (*SQLiteOpenHelperClient) SetWriteAheadLoggingEnabled ¶
func (c *SQLiteOpenHelperClient) SetWriteAheadLoggingEnabled(ctx context.Context, arg0 bool) error
SetWriteAheadLoggingEnabled calls the SetWriteAheadLoggingEnabled RPC.
type SQLiteProgramClient ¶
type SQLiteProgramClient struct {
// contains filtered or unexported fields
}
SQLiteProgramClient wraps the gRPC SQLiteProgramService client.
func NewSQLiteProgramClient ¶
func NewSQLiteProgramClient(cc grpc.ClientConnInterface) *SQLiteProgramClient
NewSQLiteProgramClient creates a new SQLiteProgram client.
func (*SQLiteProgramClient) BindAllArgsAsStrings ¶
func (c *SQLiteProgramClient) BindAllArgsAsStrings(ctx context.Context, arg0 int64) error
BindAllArgsAsStrings calls the BindAllArgsAsStrings RPC.
func (*SQLiteProgramClient) BindDouble ¶
BindDouble calls the BindDouble RPC.
func (*SQLiteProgramClient) BindNull ¶
func (c *SQLiteProgramClient) BindNull(ctx context.Context, arg0 int32) error
BindNull calls the BindNull RPC.
func (*SQLiteProgramClient) BindString ¶
BindString calls the BindString RPC.
func (*SQLiteProgramClient) ClearBindings ¶
func (c *SQLiteProgramClient) ClearBindings(ctx context.Context) error
ClearBindings calls the ClearBindings RPC.
func (*SQLiteProgramClient) GetUniqueId ¶
func (c *SQLiteProgramClient) GetUniqueId(ctx context.Context) (int32, error)
GetUniqueId calls the GetUniqueId RPC.
type SQLiteQueryBuilderClient ¶
type SQLiteQueryBuilderClient struct {
// contains filtered or unexported fields
}
SQLiteQueryBuilderClient wraps the gRPC SQLiteQueryBuilderService client.
func NewSQLiteQueryBuilderClient ¶
func NewSQLiteQueryBuilderClient(cc grpc.ClientConnInterface) *SQLiteQueryBuilderClient
NewSQLiteQueryBuilderClient creates a new SQLiteQueryBuilder client.
func (*SQLiteQueryBuilderClient) AppendColumns ¶
func (c *SQLiteQueryBuilderClient) AppendColumns(ctx context.Context, handle int64, arg0 int64, arg1 int64) error
AppendColumns calls the AppendColumns RPC.
func (*SQLiteQueryBuilderClient) AppendWhere ¶
func (c *SQLiteQueryBuilderClient) AppendWhere(ctx context.Context, handle int64, arg0 string) error
AppendWhere calls the AppendWhere RPC.
func (*SQLiteQueryBuilderClient) AppendWhereEscapeString ¶
func (c *SQLiteQueryBuilderClient) AppendWhereEscapeString(ctx context.Context, handle int64, arg0 string) error
AppendWhereEscapeString calls the AppendWhereEscapeString RPC.
func (*SQLiteQueryBuilderClient) AppendWhereStandalone ¶
func (c *SQLiteQueryBuilderClient) AppendWhereStandalone(ctx context.Context, handle int64, arg0 string) error
AppendWhereStandalone calls the AppendWhereStandalone RPC.
func (*SQLiteQueryBuilderClient) BuildQuery6 ¶
func (c *SQLiteQueryBuilderClient) BuildQuery6(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 string, arg3 string, arg4 string, arg5 string) (string, error)
BuildQuery6 calls the BuildQuery6 RPC.
func (*SQLiteQueryBuilderClient) BuildQuery7_1 ¶
func (c *SQLiteQueryBuilderClient) BuildQuery7_1(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 int64, arg3 string, arg4 string, arg5 string, arg6 string) (string, error)
BuildQuery7_1 calls the BuildQuery7_1 RPC.
func (*SQLiteQueryBuilderClient) BuildQueryString ¶
func (c *SQLiteQueryBuilderClient) BuildQueryString(ctx context.Context, handle int64, arg0 bool, arg1 string, arg2 int64, arg3 string, arg4 string, arg5 string, arg6 string, arg7 string) (string, error)
BuildQueryString calls the BuildQueryString RPC.
func (*SQLiteQueryBuilderClient) BuildUnionQuery ¶
func (c *SQLiteQueryBuilderClient) BuildUnionQuery(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 string) (string, error)
BuildUnionQuery calls the BuildUnionQuery RPC.
func (*SQLiteQueryBuilderClient) Delete ¶
func (c *SQLiteQueryBuilderClient) Delete(ctx context.Context, handle int64, arg0 int64, arg1 string, arg2 int64) (int32, error)
Delete calls the Delete RPC.
func (*SQLiteQueryBuilderClient) GetCursorFactory ¶
func (c *SQLiteQueryBuilderClient) GetCursorFactory(ctx context.Context, handle int64) (int64, error)
GetCursorFactory calls the GetCursorFactory RPC.
func (*SQLiteQueryBuilderClient) GetProjectionGreylist ¶
func (c *SQLiteQueryBuilderClient) GetProjectionGreylist(ctx context.Context, handle int64) (int64, error)
GetProjectionGreylist calls the GetProjectionGreylist RPC.
func (*SQLiteQueryBuilderClient) Insert ¶
func (c *SQLiteQueryBuilderClient) Insert(ctx context.Context, handle int64, arg0 int64, arg1 int64) (int64, error)
Insert calls the Insert RPC.
func (*SQLiteQueryBuilderClient) IsDistinct ¶
IsDistinct calls the IsDistinct RPC.
func (*SQLiteQueryBuilderClient) IsStrictColumns ¶
IsStrictColumns calls the IsStrictColumns RPC.
func (*SQLiteQueryBuilderClient) IsStrictGrammar ¶
IsStrictGrammar calls the IsStrictGrammar RPC.
func (*SQLiteQueryBuilderClient) Query7 ¶
func (c *SQLiteQueryBuilderClient) Query7(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, arg3 int64, arg4 string, arg5 string, arg6 string) (int64, error)
Query7 calls the Query7 RPC.
func (*SQLiteQueryBuilderClient) Query8_1 ¶
func (c *SQLiteQueryBuilderClient) Query8_1(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, arg3 int64, arg4 string, arg5 string, arg6 string, arg7 string) (int64, error)
Query8_1 calls the Query8_1 RPC.
func (*SQLiteQueryBuilderClient) Query9_2 ¶
func (c *SQLiteQueryBuilderClient) Query9_2(ctx context.Context, handle int64, arg0 int64, arg1 int64, arg2 string, arg3 int64, arg4 string, arg5 string, arg6 string, arg7 string, arg8 int64) (int64, error)
Query9_2 calls the Query9_2 RPC.
func (*SQLiteQueryBuilderClient) SetCursorFactory ¶
func (c *SQLiteQueryBuilderClient) SetCursorFactory(ctx context.Context, handle int64, arg0 int64) error
SetCursorFactory calls the SetCursorFactory RPC.
func (*SQLiteQueryBuilderClient) SetDistinct ¶
SetDistinct calls the SetDistinct RPC.
func (*SQLiteQueryBuilderClient) SetStrictColumns ¶
func (c *SQLiteQueryBuilderClient) SetStrictColumns(ctx context.Context, handle int64, arg0 bool) error
SetStrictColumns calls the SetStrictColumns RPC.
func (*SQLiteQueryBuilderClient) SetStrictGrammar ¶
func (c *SQLiteQueryBuilderClient) SetStrictGrammar(ctx context.Context, handle int64, arg0 bool) error
SetStrictGrammar calls the SetStrictGrammar RPC.
type SQLiteQueryClient ¶
type SQLiteQueryClient struct {
// contains filtered or unexported fields
}
SQLiteQueryClient wraps the gRPC SQLiteQueryService client.
func NewSQLiteQueryClient ¶
func NewSQLiteQueryClient(cc grpc.ClientConnInterface) *SQLiteQueryClient
NewSQLiteQueryClient creates a new SQLiteQuery client.
type SQLiteRawStatementClient ¶
type SQLiteRawStatementClient struct {
// contains filtered or unexported fields
}
SQLiteRawStatementClient wraps the gRPC SQLiteRawStatementService client.
func NewSQLiteRawStatementClient ¶
func NewSQLiteRawStatementClient(cc grpc.ClientConnInterface) *SQLiteRawStatementClient
NewSQLiteRawStatementClient creates a new SQLiteRawStatement client.
func (*SQLiteRawStatementClient) BindBlob4_1 ¶
func (c *SQLiteRawStatementClient) BindBlob4_1(ctx context.Context, arg0 int32, arg1 int64, arg2 int32, arg3 int32) error
BindBlob4_1 calls the BindBlob4_1 RPC.
func (*SQLiteRawStatementClient) BindDouble ¶
BindDouble calls the BindDouble RPC.
func (*SQLiteRawStatementClient) BindNull ¶
func (c *SQLiteRawStatementClient) BindNull(ctx context.Context, arg0 int32) error
BindNull calls the BindNull RPC.
func (*SQLiteRawStatementClient) ClearBindings ¶
func (c *SQLiteRawStatementClient) ClearBindings(ctx context.Context) error
ClearBindings calls the ClearBindings RPC.
func (*SQLiteRawStatementClient) Close ¶
func (c *SQLiteRawStatementClient) Close(ctx context.Context) error
Close calls the Close RPC.
func (*SQLiteRawStatementClient) GetColumnBlob ¶
GetColumnBlob calls the GetColumnBlob RPC.
func (*SQLiteRawStatementClient) GetColumnDouble ¶
func (c *SQLiteRawStatementClient) GetColumnDouble(ctx context.Context, arg0 int32) (float64, error)
GetColumnDouble calls the GetColumnDouble RPC.
func (*SQLiteRawStatementClient) GetColumnInt ¶
GetColumnInt calls the GetColumnInt RPC.
func (*SQLiteRawStatementClient) GetColumnLength ¶
GetColumnLength calls the GetColumnLength RPC.
func (*SQLiteRawStatementClient) GetColumnLong ¶
GetColumnLong calls the GetColumnLong RPC.
func (*SQLiteRawStatementClient) GetColumnName ¶
GetColumnName calls the GetColumnName RPC.
func (*SQLiteRawStatementClient) GetColumnText ¶
GetColumnText calls the GetColumnText RPC.
func (*SQLiteRawStatementClient) GetColumnType ¶
GetColumnType calls the GetColumnType RPC.
func (*SQLiteRawStatementClient) GetParameterCount ¶
func (c *SQLiteRawStatementClient) GetParameterCount(ctx context.Context) (int32, error)
GetParameterCount calls the GetParameterCount RPC.
func (*SQLiteRawStatementClient) GetParameterIndex ¶
func (c *SQLiteRawStatementClient) GetParameterIndex(ctx context.Context, arg0 string) (int32, error)
GetParameterIndex calls the GetParameterIndex RPC.
func (*SQLiteRawStatementClient) GetParameterName ¶
func (c *SQLiteRawStatementClient) GetParameterName(ctx context.Context, arg0 int32) (string, error)
GetParameterName calls the GetParameterName RPC.
func (*SQLiteRawStatementClient) GetResultColumnCount ¶
func (c *SQLiteRawStatementClient) GetResultColumnCount(ctx context.Context) (int32, error)
GetResultColumnCount calls the GetResultColumnCount RPC.
func (*SQLiteRawStatementClient) IsOpen ¶
func (c *SQLiteRawStatementClient) IsOpen(ctx context.Context) (bool, error)
IsOpen calls the IsOpen RPC.
func (*SQLiteRawStatementClient) ReadColumnBlob ¶
func (c *SQLiteRawStatementClient) ReadColumnBlob(ctx context.Context, arg0 int32, arg1 int64, arg2 int32, arg3 int32, arg4 int32) (int32, error)
ReadColumnBlob calls the ReadColumnBlob RPC.
func (*SQLiteRawStatementClient) Reset ¶
func (c *SQLiteRawStatementClient) Reset(ctx context.Context) error
Reset calls the Reset RPC.
type SQLiteStatementClient ¶
type SQLiteStatementClient struct {
// contains filtered or unexported fields
}
SQLiteStatementClient wraps the gRPC SQLiteStatementService client.
func NewSQLiteStatementClient ¶
func NewSQLiteStatementClient(cc grpc.ClientConnInterface) *SQLiteStatementClient
NewSQLiteStatementClient creates a new SQLiteStatement client.
func (*SQLiteStatementClient) Execute ¶
func (c *SQLiteStatementClient) Execute(ctx context.Context) error
Execute calls the Execute RPC.
func (*SQLiteStatementClient) ExecuteInsert ¶
func (c *SQLiteStatementClient) ExecuteInsert(ctx context.Context) (int64, error)
ExecuteInsert calls the ExecuteInsert RPC.
func (*SQLiteStatementClient) ExecuteUpdateDelete ¶
func (c *SQLiteStatementClient) ExecuteUpdateDelete(ctx context.Context) (int32, error)
ExecuteUpdateDelete calls the ExecuteUpdateDelete RPC.
func (*SQLiteStatementClient) SimpleQueryForBlobFileDescriptor ¶
func (c *SQLiteStatementClient) SimpleQueryForBlobFileDescriptor(ctx context.Context) (int64, error)
SimpleQueryForBlobFileDescriptor calls the SimpleQueryForBlobFileDescriptor RPC.
func (*SQLiteStatementClient) SimpleQueryForLong ¶
func (c *SQLiteStatementClient) SimpleQueryForLong(ctx context.Context) (int64, error)
SimpleQueryForLong calls the SimpleQueryForLong RPC.
func (*SQLiteStatementClient) SimpleQueryForString ¶
func (c *SQLiteStatementClient) SimpleQueryForString(ctx context.Context) (string, error)
SimpleQueryForString calls the SimpleQueryForString RPC.
type SQLiteTransactionListenerClient ¶
type SQLiteTransactionListenerClient struct {
// contains filtered or unexported fields
}
SQLiteTransactionListenerClient wraps the gRPC SQLiteTransactionListenerService client.
func NewSQLiteTransactionListenerClient ¶
func NewSQLiteTransactionListenerClient(cc grpc.ClientConnInterface) *SQLiteTransactionListenerClient
NewSQLiteTransactionListenerClient creates a new SQLiteTransactionListener client.
func (*SQLiteTransactionListenerClient) OnBegin ¶
func (c *SQLiteTransactionListenerClient) OnBegin(ctx context.Context) error
OnBegin calls the OnBegin RPC.
func (*SQLiteTransactionListenerClient) OnCommit ¶
func (c *SQLiteTransactionListenerClient) OnCommit(ctx context.Context) error
OnCommit calls the OnCommit RPC.
func (*SQLiteTransactionListenerClient) OnRollback ¶
func (c *SQLiteTransactionListenerClient) OnRollback(ctx context.Context) error
OnRollback calls the OnRollback RPC.