zoukankan      html  css  js  c++  java
  • sqlite3_stmt

    /*

    ** CAPI3REF: Prepared Statement Object

    ** KEYWORDS: {prepared statement} {prepared statements}

    **

    ** An instance of this object represents a single SQL statement that

    ** has been compiled into binary form and is ready to be evaluated.

    **

    ** Think of each SQL statement as a separate computer program.  The

    ** original SQL text is source code.  A prepared statement object 

    ** is the compiled object code.  All SQL must be converted into a

    ** prepared statement before it can be run.

    **

    ** The life-cycle of a prepared statement object usually goes like this:

    **

    ** <ol>

    ** <li> Create the prepared statement object using [sqlite3_prepare_v2()].

    ** <li> Bind values to [parameters] using the sqlite3_bind_*()

    **      interfaces.

    ** <li> Run the SQL by calling [sqlite3_step()] one or more times.

    ** <li> Reset the prepared statement using [sqlite3_reset()] then go back

    **      to step 2.  Do this zero or more times.

    ** <li> Destroy the object using [sqlite3_finalize()].

    ** </ol>

    */

    typedef struct sqlite3_stmt sqlite3_stmt;

  • 相关阅读:
    tomcat进阶操作
    tomcat环境部署
    CentOS 7.2安装lepus数据库监控系统
    常见的Linux系统监控命令
    zabbix使用jmx监控tomcat
    zabbix配置文件详解
    zabbix2.2.22 升级3.0.18
    zabbix日志监控
    zabbix api的使用
    zabbix低级自动发现之mysql多实例
  • 原文地址:https://www.cnblogs.com/feng9exe/p/12146111.html
Copyright © 2011-2022 走看看