本文整理匯總了Golang中github.com/cloudwan/gohan/db/transaction.Transaction.Create方法的典型用法代碼示例。如果您正苦於以下問題:Golang Transaction.Create方法的具體用法?Golang Transaction.Create怎麽用?Golang Transaction.Create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudwan/gohan/db/transaction.Transaction
的用法示例。
在下文中一共展示了Transaction.Create方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: DBCreate
//DBCreate creates a resource in a db.
func DBCreate(tx transaction.Transaction, schemaID string, data map[string]interface{}) error {
manager := schema.GetManager()
resource, err := manager.LoadResource(schemaID, data)
if err != nil {
return err
}
return tx.Create(resource)
}
示例2: GohanDbCreate
//GohanDbCreate adds resource to database
func GohanDbCreate(transaction transaction.Transaction, needCommit bool, schemaID string,
dataMap map[string]interface{}) (*schema.Resource, error) {
manager := schema.GetManager()
resource, err := manager.LoadResource(schemaID, dataMap)
if err != nil {
return nil, fmt.Errorf("Error during gohan_db_create: %s", err.Error())
}
resource.PopulateDefaults()
if err = transaction.Create(resource); err != nil {
return nil, fmt.Errorf("Error during gohan_db_create: %s", err.Error())
}
if needCommit {
err = transaction.Commit()
if err != nil {
return nil, fmt.Errorf("Error during gohan_db_create: %s", err.Error())
}
}
return resource, nil
}
示例3:
conn = "./test.db"
dbType = "sqlite3"
}
})
Context("When the database is empty", func() {
It("Returns an empty list", func() {
list, num, err := tx.List(networkSchema, nil, nil)
Expect(err).ToNot(HaveOccurred())
Expect(num).To(Equal(uint64(0)))
Expect(list).To(BeEmpty())
Expect(tx.Commit()).To(Succeed())
})
It("Creates a resource", func() {
Expect(tx.Create(networkResource1)).To(Succeed())
Expect(tx.Commit()).To(Succeed())
})
})
Describe("When the database is not empty", func() {
JustBeforeEach(func() {
Expect(tx.Create(networkResource1)).To(Succeed())
Expect(tx.Create(networkResource2)).To(Succeed())
Expect(tx.Create(serverResource)).To(Succeed())
Expect(tx.Commit()).To(Succeed())
tx.Close()
tx, err = dataStore.Begin()
Expect(err).ToNot(HaveOccurred())
})
示例4:
BeforeEach(func() {
schemaID = "network"
})
Describe("Using gohan_model_list", func() {
var (
tx transaction.Transaction
)
BeforeEach(func() {
resource, err := manager.LoadResource(schemaID, network1)
Expect(err).NotTo(HaveOccurred())
tx, err = testDB.Begin()
Expect(err).NotTo(HaveOccurred())
defer tx.Close()
Expect(tx.Create(resource)).To(Succeed())
Expect(tx.Commit()).To(Succeed())
action = "read"
})
Describe("When invoked correctly", func() {
Context("With transaction", func() {
BeforeEach(func() {
events["test"] = `
context.networks = gohan_model_list(context, 'network', {});`
})
It("Correctly lists elements", func() {
tx, err := testDB.Begin()
Expect(err).NotTo(HaveOccurred())