Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Neil Francis  >  SQLite PDO  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example File
Class: SQLite PDO
Retrieve SQLite database data using PDO
Author: By
Last change:
Date: 2008-10-12 16:03
Size: 1,868 bytes
 

Contents

Class file image Download
<?php
    
include_once("sqlitepdo.class.php");
    
    
#create new sqlite database object($dblink)
    
$dblink = new sqlitePDO("step7""sqlite3");    
    
    
#connect to sqlite3 database
    
$dblink->connect();
    
    
#query sqlite3 database
    
$qry "SELECT * FROM currval ORDER BY currid ASC LIMIT 5";    
    
$dblink->query($qry);    
    
    
    
#data is fed via an array
    #this example shows array values used to format as xml, html, urlencoded data.
    
    #create a tableheader array
    
$tharr = array(
                    
'ID'
                    
'Currency'
                    
'Value'
                    
);
    
    
#create a tablecell array
    
$tdarr = array(
                    
'currid',
                    
'currname'
                    
'currval'
                    
);
    
    
#EXAMPLE 1: Outputting data in html tablulated format 
    #specify a css class for table (optional)
    # $css = 'tablelist';    
    
$dblink->showDataAsTable($tharr$tdarr$css);
    
    
#--------------------------------------------------------------------------
    
    #EXAMPLE 2: Outputting data in urlencoded format( useful for flash fed data)
    #specify the name of the variable that will hold urlencoded data ($varname)
    #$varname = "data";
    #$dblink->showDataAsURLEncoded($varname, $tharr, $tdarr);
    
    #--------------------------------------------------------------------------
    
    #EXAMPLE 3: output data as xml
    #specify (a) the outer xml tag ($otag) and
    #(b) the inner xml tag($itag) that will encase the xml data - adhering to well-formedness rule.
    #eg:
    #<?xml version="1.0"?\>
    # <$otag>
    #    <$itag>
    #        <itemtitle>item</itemtitle>
    #        <itemtitle>item</itemtitle>
    #        <itemtitle>item</itemtitle>
    #    </$itag>
    # </$otag>
    
    #$otag = "currencydata";
    #$itag = "currency";
    #$dblink->showDataAsXML($otag, $itag, $tharr, $tdarr);
    #--------------------------------------------------------------------------
    
    #EXAMPLE 4: write data to xml file
    #$otag = "currencydata";
    #$itag = "currency";
    #$dblink->writeDataToXMLFile($otag, $itag, $tharr, $tdarr);
    

?>