书栈网 · BookStack 本次搜索耗时 0.040 秒,为您找到 4357 个相关结果.
  • SQLite 常用函数

    676 2020-07-20 《SQLite 教程》
    SQLite 常用函数 SQLite COUNT 函数 SQLite MAX 函数 SQLite MIN 函数 SQLite AVG 函数 SQLite SUM 函数 SQLite RANDOM 函数 SQLite ABS 函数 SQLite UPPER 函数 SQLite LOWER 函数 SQLite LENGTH 函数 SQLite...
  • SQLite 删除表

    683 2020-07-20 《SQLite 教程》
    SQLite 删除表 语法 实例 SQLite 删除表 SQLite 的 DROP TABLE 语句用来删除表定义及其所有相关数据、索引、触发器、约束和该表的权限规范。 使用此命令时要特别注意,因为一旦一个表被删除,表中所有信息也将永远丢失。 语法 DROP TABLE 语句的基本语法如下。您可以选择指定带有表名的数据库名称,如下...
  • SQLite Alter 命令

    533 2020-07-20 《SQLite 教程》
    SQLite Alter 命令 语法 实例 SQLite Alter 命令 SQLite 的 ALTER TABLE 命令不通过执行一个完整的转储和数据的重载来修改已有的表。您可以使用 ALTER TABLE 语句重命名表,使用 ALTER TABLE 语句还可以在已有的表中添加额外的列。 在 SQLite 中,除了重命名表和在已有的表中添加...
  • SQLite File Format

    759 2020-01-30 《SQLite Document》
    1. The Database File 1.1. Hot Journals 1.2. Pages 1.3. The Database Header 1.3.1. Magic Header String 1.3.2. Page Size 1.3.3. File format version numbers 1.3.4. Reserved bytes...
  • Books About SQLite

    992 2020-01-30 《SQLite Document》
    Books About SQLite Books About SQLite SQLite Forensics (2018) Author: Paul SandersonPublisher: Amazon This text by noted digital forensics expert, Paul Sanderson, provides i...
  • Persist data with SQLite

    2052 2019-06-08 《Flutter Cookbook》
    Directions 1. Add the dependencies 2. Define the Dog data model 3. Open the Database 4. Create the dogs table 5. Insert a Dog into the database 6. Retrieve the list of Dogs ...
  • 使用 SQLite 测试

    使用 SQLite 测试 样例测试场景 准备上下文 避免配置多个提供程序 为测试添加构造方法 编写测试 使用 SQLite 测试 SQLite 有一个内存模式,它允许你使用 SQLite 来编写针对关系数据库的测试,并且不会造成实际数据库的操作开销。 提示 你可以在 GitHub 上查阅当前文章涉及的代码样例 。 样例测试场...
  • SQLite权威指南

    2401 2019-05-24 《SQLite权威指南》
    SQLite权威指南 SQLite权威指南 The Definitive Guide to SQLite (内容摘要) Michael Owens Copyright . 2006 by Michael Owens 本书的示例代码可到http://www.apress.com 下载。
  • 20.1 使用SQLite

    使用SQLite 小结 练习 参考源码 使用SQLite SQLite是一种嵌入式数据库,它的数据库就是一个文件。由于SQLite本身是C写的,而且体积很小,所以,经常被集成到各种应用程序中,甚至在iOS和Android的App中都可以集成。 Python就内置了SQLite3,所以,在Python中使用SQLite,不需要安装任何东西,直接...
  • SQLite Database Analyzer (sqlite3_analyzer.exe)

    1012 2020-01-30 《SQLite Document》
    1. The sqlite3_analyzer.exe Utility Program 1.1. Implementation 1.2. Example Output 1. The sqlite3_analyzer.exe Utility Program The sqlite3_analyzer.exe binary is a command-l...