PHP Classes

File: SPSQLiteExample02.php

Recommend this page to a friend!
  Classes of Alan D'Angelo   SPSQLite Class   SPSQLiteExample02.php   Download  
File: SPSQLiteExample02.php
Role: Example script
Content type: text/plain
Description: Usage Example 02
Class: SPSQLite Class
Class for simplifying the use of SQLite
Author: By
Last change:
Date: 21 years ago
Size: 1,656 bytes
 

Contents

Class file image Download
<?php
// ====================================
// RETRIVE DATA TO DATABASE
// ====================================

// include the library
include_once 'SPSQLite.class.php';

// set a path for a dabase file
$path = 'C:/AppServ/www/';

// create the object and connect to the database
$sqlite =& new SPSQLite($path . 'test.db');

// create table
$query =<<<QRY
CREATE TABLE test(
    id INTEGER PRIMARY KEY,
    name VARCHAR(25),
    quantity INTEGER,
    price NUMERIC(5,2)
);
QRY;

$sqlite->query($query);

// insert data
$queries = array(
           
"INSERT INTO test (name, quantity, price) VALUES('toro', 10, 500.00);",
           
"INSERT INTO test (name, quantity, price) VALUES('gallo', 5, 200.00);",
           
"INSERT INTO test (name, quantity, price) VALUES('rana', 20, 100.00);",
           
"INSERT INTO test (name, quantity, price) VALUES('cane', 3, 500.00);"
           
);

foreach(
$queries as $query){
   
$sqlite->query($query);
}

// create a query
$query = 'SELECT * FROM test';
$sqlite->query($query);

// return a rowset with num and assoc index
$rows = $sqlite->returnRows();
echo
'<pre>';
print_r($rows);
echo
'</pre>';

$sqlite->query($query);
// return a rowset with column names index
$rows = $sqlite->returnRows('assoc');
echo
'<pre>';
print_r($rows);
echo
'</pre>';

$sqlite->query($query);
// return a rowset with numeric index
$rows = $sqlite->returnRows('num');
echo
'<pre>';
print_r($rows);
echo
'</pre>';

// close SQLite connection
$sqlite->close();

// unset the object
unset($sqlite);

// delete the datadase file
unlink($path . 'test.db');
?>