flatfile
[ class tree: flatfile ] [ index: flatfile ] [ all elements ]

Flatfile Tutorial

Example usage of flatfile class

Luke Plant

Introduction

The Flatfile package is a small but very poweful set of classes for database like access to text "flat files". It provides equivalents to many of the common SQL commands.

Below is an extended example of how to use Flatfile and the related classes. The example is a table that holds 'posts' (such as a message on a message board), each with an ID, the title, the date, the author and the text of the post.

Setup

First we will set up some constants for the columns (not required, but encouraged!).

  1. define('POST_ID',    0);
  2. define('POST_TITLE'1);
  3. define('POST_DATE',  2);
  4. define('POST_BY',    3);
  5. define('POST_TEXT',  4);

Now we need to create the database object and set it up. $datadir is set to the directory where all the tables are stored.

  1. require_once('flatfile.php');
  2. $db new Flatfile();
  3. $db->datadir 'data/';

SELECT

To get all rows from a table, use selectAll():

  1. $allrows $db->selectAll('posts.txt');

The result will be an array of arrays: $allrows[r][c] will contain the data for row r, column c, where r and c are integers (zero based indexes).

To get a single row that is identified by a unique field, use selectUnique()

  1. $aSingleRow $db->selectUnique('posts.txt'POST_ID'1234');

The result is a single array of the values in the specified row.

To do a simple WHERE clause, e.g. get all posts from user 'joe', use selectWhere() and SimpleWhereClause:

  1. $rows $db->selectWhere('posts.txt'
  2.                               new SimpleWhereClause(POST_BY'=''joe'));

The output is an array of arrays, as for selectAll().

To build a complex criteria that will select rows from user 'joe' made after the first of February 2005 (assuming the date column stores UNIX timestamps):

  1. $compClause new AndWhereClause();
  2. $compClause->add(new SimpleWhereClause(POST_BY'=''joe'STRING_COMPARISON));
  3. $compClause->add(new SimpleWhereClause(POST_DATE'>',  mktime(000122005)
  4.                                        INTEGER_COMPARISON));

You can also build the composite where clause in the constructor:

  1. $compClause new AndWhereClause(
  2.   new SimpleWhereClause(POST_BY'=''joe'STRING_COMPARISON),
  3.   new SimpleWhereClause(POST_DATE'>',  
  4.                         mktime(000122005)INTEGER_COMPARISON));

To use the clause, and only return the first 5 posts, sorted in date order descending, do this:

  1. $rows $db->selectWhere('posts.txt'$compClause5
  2.                           new OrderBy(POST_DATEDESCENDINGINTEGER_COMPARISON));

(This introduces the $limit and $orderBy parameters of selectWhere())

You can of course use any WhereClause object as part of a CompositeWhereClause and so can have a combination of AND and OR operators.

The 'WhereClause' method can be used with deleteWhere() and updateSetWhere(). Other WhereClause classes are available and if they are not sufficient you can create your own very easily.

You can order on multiple fields by supplying an array of OrderBy objects instead of a single one.

INSERT

To insert a row, use insert() or insertWithAutoId(). The latter will do an auto-increment on a specified field, and will return the newly generated ID.

  1. $newpost[POST_ID'0'// dummy
  2. $newpost[POST_TITLE'A great post';
  3. $newpost[POST_DATEtime();
  4. $newpost[POST_BY]   'Me';
  5. $newpost[POST_TEXT]  'I have discovered a truly wonderful cure to cancer 
  6.                        which this line of code is too small to contain';
  7. $newId $db->insertWithAutoId('posts.txt'POST_ID$newpost);

UPDATE

To set a number of fields in a table, you can use updateSetWhere(). Suppose user joe has a sex change operation:

  1. $db->updateSetWhere('posts.txt'array(POST_BY => 'jane'),
  2.                     new SimpleWhereClause(POST_BY'=''joe'));

The second parameter can contain any number of fields (not just one as above), or even the complete row.

DELETE

deleteWhere() works in a similar fashion to updateSetWhere() and selectWhere(). 'joe', or should I say 'jane', later decides that she wants to disown all posts she made while still a man:

  1. $db->deleteWhere('posts.txt'new AndWhereClause(
  2.         new SimpleWhereClause(POST_BY'=''jane'STRING_COMPARISON),
  3.         new SimpleWhereClause(POST_DATE'<'mktime(0,0,0,3,4,2004)
  4.                               INTEGER_COMPARISON)));

Custom comparisons

OrderBy and SimpleWhereClause use the constants STRING_COMPARISON, NUMERIC_COMPARISON and INTEGER_COMPARISON to qualify ordering and comparison operations. However, these constants are in fact just the names of functions that do the comparison of two variables. You can therefore use your own function or a builtin PHP function wherever one of these constants can be used. This means, for example, that you can use strcasecmp() to do case insensitive string comparisons:

This will match all posts by joe or JOE or jOe:

  1. $db->selectWhere('posts.txt'
  2.        new SimpleWhereClause(POST_BY'=''joe''strcasecmp'));

You can of course create your own function, providing it works equivalently to strmp()


Documentation generated on Sun, 25 Oct 2009 22:30:46 +0000 by phpDocumentor 1.4.3