sqlserver

package
v0.0.0-...-ebb33e4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 18, 2023 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(logger logger.Logger) state.Store

New creates a new instance of a SQL Server transaction store.

Types

type IndexedProperty

type IndexedProperty struct {
	ColumnName string `json:"column"`
	Property   string `json:"property"`
	Type       string `json:"type"`
}

IndexedProperty defines a indexed property.

type KeyType

type KeyType string

KeyType defines type of the table identifier.

const (
	// StringKeyType defines a key of type string.
	StringKeyType KeyType = "string"

	// UUIDKeyType defines a key of type UUID/GUID.
	UUIDKeyType KeyType = "uuid"

	// IntegerKeyType defines a key of type integer.
	IntegerKeyType KeyType = "integer"

	// InvalidKeyType defines an invalid key type.
	InvalidKeyType KeyType = "invalid"
)

func KeyTypeFromString

func KeyTypeFromString(k string) (KeyType, error)

KeyTypeFromString tries to create a KeyType from a string value.

type SQLServer

type SQLServer struct {
	state.BulkStore
	// contains filtered or unexported fields
}

SQLServer defines a Ms SQL Server based state store.

func (*SQLServer) BulkDelete

func (s *SQLServer) BulkDelete(ctx context.Context, req []state.DeleteRequest) error

BulkDelete removes multiple entries from the store.

func (*SQLServer) BulkSet

func (s *SQLServer) BulkSet(ctx context.Context, req []state.SetRequest) error

BulkSet adds/updates multiple entities on store.

func (*SQLServer) CleanupExpired

func (s *SQLServer) CleanupExpired() error

func (*SQLServer) Close

func (s *SQLServer) Close() error

Close implements io.Closer.

func (*SQLServer) Delete

func (s *SQLServer) Delete(ctx context.Context, req *state.DeleteRequest) error

Delete removes an entity from the store.

func (*SQLServer) Features

func (s *SQLServer) Features() []state.Feature

Features returns the features available in this state store.

func (*SQLServer) Get

Get returns an entity from store.

func (*SQLServer) GetCleanupInterval

func (s *SQLServer) GetCleanupInterval() *time.Duration

GetCleanupInterval returns the cleanupInterval property. This is primarily used for tests.

func (*SQLServer) GetComponentMetadata

func (s *SQLServer) GetComponentMetadata() map[string]string

func (*SQLServer) Init

func (s *SQLServer) Init(ctx context.Context, metadata state.Metadata) error

Init initializes the SQL server state store.

func (*SQLServer) Multi

Multi performs multiple updates on a Sql server store.

func (*SQLServer) Set

func (s *SQLServer) Set(ctx context.Context, req *state.SetRequest) error

Set adds/updates an entity on store.

type TvpDeleteTableStringKey

type TvpDeleteTableStringKey struct {
	ID         string
	RowVersion []byte
}

TvpDeleteTableStringKey defines a table type with string key.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL