书栈网 · BookStack 本次搜索耗时 0.035 秒,为您找到 26566 个相关结果.
  • Model _meta API

    Model _meta API Field access API Retrieving a single field instance of a model by name Retrieving all field instances of a model Model _meta API class Options The model _...
  • Model _meta API

    Model _meta API Field access API Retrieving a single field instance of a model by name Retrieving all field instances of a model Model _meta API class Options [source] Th...
  • 7. 高级用法

    2354 2018-05-17 《GORM 1.0 中文文档》
    高级用法 错误处理 {#eh} 事物 {#t} 一个具体的例子 SQL构建 {#sb} 执行原生SQL sql.Row & sql.Rows 迭代中使用sql.Rows的Scan 通用数据库接口sql.DB {#g} 连接池 复合主键 {#cpk} 日志 {#l} 自定义日志 高级用法 错误处理 {#eh} 执行任何操作后...
  • 1.3. Databases

    1.3. Databases 1.3. Databases The Database endpoint provides an interface to an entire database with in CouchDB. These are database-level, rather than document-level requests. ...
  • 迁移

    AutoMigrate Migrator 接口 当前数据库 表 列 约束 索引 约束 其他迁移工具 AutoMigrate Automatically migrate your schema, to keep your schema up to date. NOTE: AutoMigrate will create tables...
  • Scope

    查询 分页 更新 Scopes 使你可以复用通用的逻辑,共享的逻辑需要定义为 func(*gorm.DB) *gorm.DB 类型 查询 Scope 查询示例: func AmountGreaterThan1000 ( db * gorm . DB ) * gorm . DB { return db . Where ( "...
  • Write Plugins

    Callbacks Register Callback Delete Callback Replace Callback Register Callback with orders Defined Callbacks Plugin Callbacks GORM itself is powered by Callbacks , it has ...
  • Session

    DryRun PrepareStmt NewDB Initialized Skip Hooks DisableNestedTransaction AllowGlobalUpdate FullSaveAssociations Context Logger NowFunc Debug QueryFields CreateBatchSiz...
  • 第五节 Rollback()实现

    第五节 Rollback()实现 第五节 Rollback()实现 Rollback()中,主要对不同事务进行不同操作: 如果当前事务是只读事务,则只需要从db中的txs中找到当前事务,然后移除掉即可。 如果当前事务是读写事务,则需要将空闲列表中和该事务关联的页释放掉,同时重新从freelist中加载空闲页。 // Rollback close...