PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Pavan Solapure   Dba Wrapper   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: Dba Wrapper
Flat file database access abstraction layer
Author: By
Last change:
Date: 15 years ago
Size: 309 bytes
 

Contents

Class file image Download
<?
include "Dba.php";

//create object
$dba = new DbaWrapper("test.db","c"); // modes n - new , c - create if not exists OR use existing

//insert record
$dba->insert(1,"php4");

//fetch reord
$dba->fetch(1);

//replace
$dba->replace(1,"php5");

//delete
$dba->delete(1);

$dba->close();
?>