加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

SQLite introduction

发布时间:2020-12-12 20:07:10 所属栏目:百科 来源:网络整理
导读:SQLite: SQLite is a software library that implements a self-contained , serverless , zero-configuration , transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world. The source code for SQLite is

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 object: sqlite3
  • The prepared statement object: sqlite3_stmt

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

  • sqlite3_open()
  • sqlite3_prepare()
  • sqlite3_step()
  • sqlite3_column() cannot directly use. it is family of column.
  • sqlite3_finalize()
  • sqlite3_close()

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()
  • (编辑:李大同)

    【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

      推荐文章
        热点阅读