本文整理匯總了Golang中github.com/waterlink/rebecca/context.Context.SetTx方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.SetTx方法的具體用法?Golang Context.SetTx怎麽用?Golang Context.SetTx使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/waterlink/rebecca/context.Context
的用法示例。
在下文中一共展示了Context.SetTx方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: All
// All is for fetching all records
func (d *Driver) All(tablename string, fields []field.Field, ctx context.Context) ([][]field.Field, error) {
if tx := ctx.GetTx(); tx != nil {
return tx.(*Driver).All(tablename, fields, ctx.SetTx(nil))
}
return d.getTable(tablename), nil
}
示例2: Where
// Where is for fetching specific records
func (d *Driver) Where(tablename string, fields []field.Field, ctx context.Context, where string, args ...interface{}) ([][]field.Field, error) {
if tx := ctx.GetTx(); tx != nil {
return tx.(*Driver).Where(tablename, fields, ctx.SetTx(nil), where, args...)
}
result := [][]field.Field{}
fn, ok := d.whereRegistry[where]
if !ok {
return nil, fmt.Errorf(
"Fake driver has no '%s' where query registerd, please register with RegisterWhere",
where,
)
}
for _, record := range d.getTable(tablename) {
ok, err := fn(record, args...)
if err != nil {
return nil, fmt.Errorf("Registered query '%s' returned error - %s", where, err)
}
if ok {
result = append(result, record)
}
}
return result, nil
}
示例3: First
// First is for fetching first specific record
func (d *Driver) First(tablename string, fields []field.Field, ctx context.Context, where string, args ...interface{}) ([]field.Field, error) {
if tx := ctx.GetTx(); tx != nil {
return tx.(*Driver).First(tablename, fields, ctx.SetTx(nil), where, args...)
}
records, err := d.Where(tablename, fields, ctx, where, args...)
if err != nil {
return nil, fmt.Errorf("Unable to get first record - %s", err)
}
if len(records) == 0 {
return nil, fmt.Errorf("Record not found with where query '%s'", where)
}
return records[0], nil
}