SQLite introduction

sqlite:

sqlite is a software library that implements aself-contained,serverless,zero-configuration,transactionalsql database engine. sqlite is the most widely deployedsql database engine in the world. The source code for sqlite is in thepublic domain.

sqlite http:

http://www.sqlite.org/

The principal task of an sql database engine is to evaluate statements of sql. In order to accomplish this purpose,the developer needs to kNow about two objects:

The database connection and prepared statement objects are controlled by a small set of C/C++ interface routine listed below.

sqlite3_column family:

sqlite3_column_blob()

  • sqlite3_column_bytes()
  • sqlite3_column_bytes16()
  • sqlite3_column_count()
  • sqlite3_column_double()
  • sqlite3_column_int()
  • sqlite3_column_int64()
  • sqlite3_column_text()
  • sqlite3_column_text16()
  • sqlite3_column_type()
  • sqlite3_column_value()
  • 相关文章

    SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
    使用Python操作内置数据库SQLite以及MySQL数据库。
    破解微信数据库密码,用python导出微信聊天记录
    (Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
    安卓开发,利用SQLite实现登陆注册功能