书栈网 · BookStack 本次搜索耗时 0.088 秒,为您找到 1200 个相关结果.
  • 使用 EF4 的可测试性(文章)

    可测试性和实体框架 4.0Testability and Entity Framework 4.0 简介Introduction 什么是可测试代码?What Is Testable Code? 可测试代码的质量The Qualities of Testable Code 数据持久性的设计模式Design Patterns for Data Persis...
  • ORM-Enabled INSERT, UPDATE, and DELETE statements

    ORM-Enabled INSERT, UPDATE, and DELETE statements ORM Bulk INSERT Statements Getting new objects with RETURNING Using Heterogenous Parameter Dictionaries Bulk INSERT for Joined T...
  • 5.2. Security

    5.2. Security 5.2. Security Firebird 3 offers a number of security options, designed to make unauthorised access as difficult as possible. Be warned however that some configura...
  • COMMENT

    COMMENT 概要 描述 参数 注解 示例 兼容性 COMMENT 定义或更改对象的注释。 概要 COMMENT ON { TABLE object_name | COLUMN relation_name . column_name | AGGREGATE agg_name ( agg_type [,...
  • limit()

    limit() 语法 类别 描述 参数 返回值 错误 示例 limit() 语法 query.limit( <num> ) 类别 SdbQuery 描述 控制查询返回的记录条数。 参数 参数名 参数类型 默认值 描述 是否必填 num int —- 自定义返回结果集的记录条数 是 Note: query...
  • createLobID()

    createLobID() 名称 语法 类别 描述 参数 返回值 错误 示例 createLobID() 名称 createLobID - 创建大对象ID。 语法 db.collectionspace.collection.createLobID([Time]) 类别 Collection 描述 通过服务端生成...
  • 15. Classes

    1249 2019-05-03 《Exploring ES6》
    15. Classes 15.1 Overview 15.2 The essentials 15.2.1 Base classes 15.2.1.1 No separators between members of class definitions 15.2.1.2 Class declarations are not hoisted 15.2.1....
  • What’s New in SQLAlchemy 1.2?

    What’s New in SQLAlchemy 1.2? Introduction Platform Support Targeting Python 2.7 and Up New Features and Improvements - ORM “Baked” loading now the default for lazy loads New “...
  • 窗口函数

    窗口函数 窗口函数列表 如何使用窗口函数 窗口函数 窗口函数(Window Function)是一种特殊的函数,它能够在查询结果集的某个窗口(Window)上执行计算操作。窗口函数可以用于对结果集进行分组、排序和聚合操作,同时还能够在每个窗口内计算每行数据的相关值,而无需改变结果集的行数。即通过窗口函数,可以在不引入额外的子查询或连接操作的情况下,...
  • Atomic updates

    Atomic updates Upsert Atomic updates Peewee allows you to perform atomic updates. Let’s suppose we need to update some counters. The naive approach would be to write something...