downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Our source is open

The syntax highlighted source is automatically generated by PHP from the plaintext script. If you're interested in what's behind the several functions we used, you can always take a look at the source of the following files:

Of course, if you want to see the source of this page, we have it available. You can also browse the SVN repository for this website on svn.php.net.

Source of: /manual/en/book.sqlite3.php

<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once
dirname(__FILE__) ."/toc/refs.database.vendors.inc";
$setup = array (
 
'home' =>
  array (
   
0 => 'index.php',
   
1 => 'PHP Manual',
  ),
 
'head' =>
  array (
   
0 => 'UTF-8',
   
1 => 'en',
  ),
 
'this' =>
  array (
   
0 => 'book.sqlite3.php',
   
1 => 'SQLite3',
  ),
 
'up' =>
  array (
   
0 => 'refs.database.vendors.php',
   
1 => 'Vendor Specific Database Extensions',
  ),
 
'prev' =>
  array (
   
0 => 'function.sqlite-valid.php',
   
1 => 'sqlite_valid',
  ),
 
'next' =>
  array (
   
0 => 'intro.sqlite3.php',
   
1 => 'Introduction',
  ),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);

manual_header();
?>
<div>
 <h1 class="title">SQLite3</h1>
 

 

 







 







 






 






 







<ul class="chunklist chunklist_book"><li><a href="intro.sqlite3.php">Introduction</a></li><li><a href="sqlite3.setup.php">Installing/Configuring</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="sqlite3.requirements.php">Requirements</a></li><li><a href="sqlite3.installation.php">Installation</a></li><li><a href="sqlite3.configuration.php">Runtime Configuration</a></li><li><a href="sqlite3.resources.php">Resource Types</a></li></ul></li><li><a href="sqlite3.constants.php">Predefined Constants</a></li><li><a href="class.sqlite3.php">SQLite3</a> — The SQLite3 class<ul class="chunklist chunklist_book chunklist_children"><li><a href="sqlite3.changes.php">SQLite3::changes</a> — Returns the number of database rows that were changed (or inserted or
   deleted) by the most recent SQL statement</li><li><a href="sqlite3.close.php">SQLite3::close</a> — Closes the database connection</li><li><a href="sqlite3.construct.php">SQLite3::__construct</a> — Instantiates an SQLite3 object and opens an SQLite 3 database</li><li><a href="sqlite3.createaggregate.php">SQLite3::createAggregate</a> — Registers a PHP function for use as an SQL aggregate function</li><li><a href="sqlite3.createfunction.php">SQLite3::createFunction</a> — Registers a PHP function for use as an SQL scalar function</li><li><a href="sqlite3.escapestring.php">SQLite3::escapeString</a> — Returns a string that has been properly escaped</li><li><a href="sqlite3.exec.php">SQLite3::exec</a> — Executes a result-less query against a given database</li><li><a href="sqlite3.lasterrorcode.php">SQLite3::lastErrorCode</a> — Returns the numeric result code of the most recent failed SQLite request</li><li><a href="sqlite3.lasterrormsg.php">SQLite3::lastErrorMsg</a> — Returns English text describing the most recent failed SQLite request</li><li><a href="sqlite3.lastinsertrowid.php">SQLite3::lastInsertRowID</a> — Returns the row ID of the most recent INSERT into the database</li><li><a href="sqlite3.loadextension.php">SQLite3::loadExtension</a> — Attempts to load an SQLite extension library</li><li><a href="sqlite3.open.php">SQLite3::open</a> — Opens an SQLite database</li><li><a href="sqlite3.prepare.php">SQLite3::prepare</a> — Prepares an SQL statement for execution</li><li><a href="sqlite3.query.php">SQLite3::query</a> — Executes an SQL query</li><li><a href="sqlite3.querysingle.php">SQLite3::querySingle</a> — Executes a query and returns a single result</li><li><a href="sqlite3.version.php">SQLite3::version</a> — Returns the SQLite3 library version as a string constant and as a number</li></ul></li><li><a href="class.sqlite3stmt.php">SQLite3Stmt</a> — The SQLite3Stmt class<ul class="chunklist chunklist_book chunklist_children"><li><a href="sqlite3stmt.bindparam.php">SQLite3Stmt::bindParam</a> — Binds a parameter to a statement variable</li><li><a href="sqlite3stmt.bindvalue.php">SQLite3Stmt::bindValue</a> — Binds the value of a parameter to a statement variable</li><li><a href="sqlite3stmt.clear.php">SQLite3Stmt::clear</a> — Clears all current bound parameters</li><li><a href="sqlite3stmt.close.php">SQLite3Stmt::close</a> — Closes the prepared statement</li><li><a href="sqlite3stmt.execute.php">SQLite3Stmt::execute</a> — Executes a prepared statement and returns a result set object</li><li><a href="sqlite3stmt.paramcount.php">SQLite3Stmt::paramCount</a> — Returns the number of parameters within the prepared statement</li><li><a href="sqlite3stmt.reset.php">SQLite3Stmt::reset</a> — Resets the prepared statement</li></ul></li><li><a href="class.sqlite3result.php">SQLite3Result</a> — The SQLite3Result class<ul class="chunklist chunklist_book chunklist_children"><li><a href="sqlite3result.columnname.php">SQLite3Result::columnName</a> — Returns the name of the nth column</li><li><a href="sqlite3result.columntype.php">SQLite3Result::columnType</a> — Returns the type of the nth column</li><li><a href="sqlite3result.fetcharray.php">SQLite3Result::fetchArray</a> — Fetches a result row as an associative or numerically indexed array or both</li><li><a href="sqlite3result.finalize.php">SQLite3Result::finalize</a> — Closes the result set</li><li><a href="sqlite3result.numcolumns.php">SQLite3Result::numColumns</a> — Returns the number of columns in the result set</li><li><a href="sqlite3Result.reset.php">SQLite3Result::reset</a> — Resets the result set back to the first row</li></ul></li></ul></div><?php manual_footer(); ?>
 
show source | credits | sitemap | contact | advertising | mirror sites