Documentation ¶
Index ¶
- type DB
- type Transaction
- func (tx *Transaction) Close() error
- func (tx *Transaction) Closed() bool
- func (tx *Transaction) Commit() error
- func (tx *Transaction) Create(resource *schema.Resource) error
- func (tx *Transaction) Delete(s *schema.Schema, resourceID interface{}) error
- func (tx *Transaction) Exec(sql string, args ...interface{}) error
- func (tx *Transaction) Fetch(s *schema.Schema, filter transaction.Filter) (*schema.Resource, error)
- func (tx *Transaction) List(s *schema.Schema, filter transaction.Filter, pg *pagination.Paginator) (list []*schema.Resource, total uint64, err error)
- func (tx *Transaction) Query(s *schema.Schema, query string, arguments []interface{}) (list []*schema.Resource, err error)
- func (tx *Transaction) RawTransaction() *sqlx.Tx
- func (tx *Transaction) SetIsolationLevel(level transaction.Type) error
- func (tx *Transaction) StateFetch(s *schema.Schema, filter transaction.Filter) (state transaction.ResourceState, err error)
- func (tx *Transaction) StateUpdate(resource *schema.Resource, _ *transaction.ResourceState) error
- func (tx *Transaction) Update(resource *schema.Resource) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DB ¶
type DB struct {
// contains filtered or unexported fields
}
DB is yaml implementation of DB This db backend is intended for development and test purpose only
func (*DB) Begin ¶
func (db *DB) Begin() (transaction.Transaction, error)
Begin connection starts new transaction
type Transaction ¶
type Transaction struct {
// contains filtered or unexported fields
}
Transaction is yaml implementation of DB This db backend is intended for development and test purpose only
func (*Transaction) Commit ¶
func (tx *Transaction) Commit() error
Commit commits changes to db Unsupported in this db
func (*Transaction) Create ¶
func (tx *Transaction) Create(resource *schema.Resource) error
Create create resource in the db
func (*Transaction) Delete ¶
func (tx *Transaction) Delete(s *schema.Schema, resourceID interface{}) error
Delete delete resource from db
func (*Transaction) Exec ¶
func (tx *Transaction) Exec(sql string, args ...interface{}) error
Exec executes sql in transaction
func (*Transaction) Fetch ¶
func (tx *Transaction) Fetch(s *schema.Schema, filter transaction.Filter) (*schema.Resource, error)
Fetch resources by ID in the db
func (*Transaction) List ¶
func (tx *Transaction) List(s *schema.Schema, filter transaction.Filter, pg *pagination.Paginator) (list []*schema.Resource, total uint64, err error)
List resources in the db
func (*Transaction) Query ¶
func (tx *Transaction) Query(s *schema.Schema, query string, arguments []interface{}) (list []*schema.Resource, err error)
Query with raw string
func (*Transaction) RawTransaction ¶
func (tx *Transaction) RawTransaction() *sqlx.Tx
RawTransaction returns raw transaction
func (*Transaction) SetIsolationLevel ¶
func (tx *Transaction) SetIsolationLevel(level transaction.Type) error
SetIsolationLevel specify transaction isolation level
func (*Transaction) StateFetch ¶
func (tx *Transaction) StateFetch(s *schema.Schema, filter transaction.Filter) (state transaction.ResourceState, err error)
StateFetch is not supported in file databases
func (*Transaction) StateUpdate ¶
func (tx *Transaction) StateUpdate(resource *schema.Resource, _ *transaction.ResourceState) error
StateUpdate update resource state