程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP SQlite 函數庫詳解

PHP SQlite 函數庫詳解

編輯:關於PHP編程

  PHP SQlite數據庫對於擁有相當經驗的PHP程序員來說是不會陌生的,但是要想完全掌握PHP SQlite數據庫的相關函數的應用也不是一件易事。下面我們就為大家總結了一些PHP SQlite數據庫的相關函數。

 

 

 

 

  PHP SQlite數據庫之sqlite_array_query —— 發送一條 SQL 查詢,並返回一個數組。

  sqlite_busy_timeout —— 
  設置超時時間(busy timeout duration),或者頻繁的用戶失去權限(disable busy handlers)。

  sqlite_changes ——
  返回被最新的SQL 查詢(changed by the most recent SQL statement)改變的行數。

  sqlite_close ——
  關閉一個打開的SQLite數據庫。

  sqlite_column ——
  在當前的行中取得一列(a column from the current row of a result set)。

  sqlite_create_aggregate ——
  Register an aggregating UDF for use in SQL statements。

  sqlite_create_function ——
  Registers a "regular" User Defined Function for use in SQL statements。

  sqlite_current ——
  在返回的數組中取得當前的行(the current row from a result set as an array)。

  sqlite_error_string ——
  返回錯誤代碼的原始描述(the textual description of an error code)。

  sqlite_escape_string ——
  釋放一個用於查詢的字符串(Escapes a string for use as a query parameter)。

  sqlite_fetch_array ——
   取得下一行並設置成一個數組(the next row from a result set as an array)。

  sqlite_fetch_single ——
   取得第一列並設置成一個字符串(Fetches the first column of a result set as a string)。

  sqlite_fetch_string ——
  sqlite_fetch_single()的別名。

  sqlite_field_name ——
  取得結果中指定字段的字段名。

  sqlite_has_more ——
  返回是否有更多可用的行(whether or not more rows are available)。

  sqlite_last_error ——
  返回數據庫的最新的錯誤代碼(the error code of the last error for a database)。

  sqlite_last_insert_rowid ——
  返回最新插入的行的行號(the most recently inserted row)。

  sqlite_libencoding ——
  返回SQLite庫(SQLite library)的編碼(encoding)。

  PHP SQlite數據庫之sqlite_libversion ——
  返回SQLite庫(SQLite library)的版本。

  sqlite_next ——
  返回下一行的行號。

  sqlite_num_fields ——
  取得結果集中字段的數目。

  sqlite_num_rows ——
  取得結果集中行的數目。

  sqlite_open ——
   打開一個SQLite數據庫。如果文件不存在則嘗試創建之。

  sqlite_popen ——
  用永久連接的方式打開一個SQLite數據庫。如果文件不存在則嘗試創建之。

  sqlite_query ——
  發送一條 SQL 查詢,並返回一個結果句柄(a result handle)。

  sqlite_rewind ——
  倒回第一行(Seek to the first row number)。

  sqlite_seek ——
  在緩存結果中查找特定的行號(Seek to a particular row number of a buffered result set)。

  sqlite_udf_decode_binary ——
  Decode binary data passed as parameters to an UDF。

  sqlite_udf_encode_binary ——
   Encode binary data before returning it from an UDF。

  PHP SQlite數據庫之sqlite_unbuffered_query ——
  發送一條 SQL 查詢,並不獲取和緩存結果的行。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved