微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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()
  • 原文地址:https://www.jb51.cc/sqlite/200787.html

    版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

    相关推荐