Skip to content

PHP library for SQL-like access to a Paradox database file.

Notifications You must be signed in to change notification settings

lukemundy/paradox-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Paradox Database PHP Library

A PHP library for SQL-like access to a Paradox database file.

Requirements

Usage

<?php
	
	$pdox = new Paradox_Database();
	
	$pdox->open('database.db');
	
	$pdox
		->select('field1, field2, field3')
		->where('field1', '>', '6')
		->limit(5);
	
	$results = $pdox->get();
	
?>

About

PHP library for SQL-like access to a Paradox database file.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages