SQLite introduction

前端之家收集整理的这篇文章主要介绍了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.f2er.com/sqlite/200787.html

    猜你在找的Sqlite相关文章