书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 4359 个相关结果.
  • Compiling on Debian Stretch

    Prerequisites Installing from command line: Steps Step 1: Clone (=copy) the Github repository to your computer Step 2: Run cmake or qmake Step 2a: If using cmake Step 2b: If us...
  • How to install Django

    How to install Django Install Python Install Apache and mod_wsgi Get your database running Install the Django code Installing an official release with pip Installing a distribu...
  • Unlock Notify

    435 2020-01-30 《SQLite Document》
    Using the sqlite3_unlock_notify() API Using the sqlite3_unlock_notify() API /* This example uses the pthreads API */ #include <pthread.h>   /* ** A pointer to an instance...
  • Indexes and Constraints

    Indexes and Constraints Single-column indexes and constraints Multi-column indexes Advanced Index Creation Table constraints Indexes and Constraints Peewee can create index...
  • 版本记录

    2562 2020-11-04 《SqlSugar 5.0 文档》
    版本记录 版本记录 待发布版本5.0.1.01 1、创库添加一参数功能 2、Select(i,j)=>new{i,j})I和j是同一个实体的时候报错 - 上个版本延期发布的功能 3、创建库一些配置 上个版本延期发布的功能 4、Oracle 手写SQL 用 null as 字段 ,映射问题 5、Oracle in超过1000特殊处...
  • 性能

    禁用默认事务 缓存预编译语句 带 PreparedStmt 的 SQL 生成器 选择字段 迭代、FindInBatches Index Hints 读写分离 GORM 已经优化了许多东西来提高性能,其默认性能对大多数应用来说都够用了。但这里还是有一些关于如何为您的应用改进性能的方法。 禁用默认事务 对于写操作(创建、更新、删除),为了...
  • 性能

    禁用默认事务 缓存预编译语句 带 PreparedStmt 的 SQL 生成器 选择字段 迭代、FindInBatches Index Hints 读写分离 GORM optimizes many things to improve the performance, the default performance should be good...
  • Create a migration

    Create a migration Workaround for SQLite limitations Apply the migration Create a migration Migrations keep track of changes to the database structure over time. They make it...
  • Django 1.9.5 release notes

    Django 1.9.5 release notes Bugfixes Django 1.9.5 release notes April 1, 2016 Django 1.9.5 fixes several bugs in 1.9.4. Bugfixes Made MultiPartParser ignore filenames that ...
  • 怎样使用数据库事务

    怎样使用数据库事务处理 问题: 解决: 怎样使用数据库事务处理 问题: 怎样使用数据库事务处理? 解决: 数据库对象有一个方法“transaction”,将启动一个新的事务,并返回事务对象。这个事务对象可以使用commit提交事务或rollback来回滚事务。 import web db = web . database...