PHP Doku:: Create a new paradox object - function.px-new.html

Verlauf / Chronik / History: (16) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenParadox File AccessParadox Funktionenpx_new

Ein Service von Reinhard Neidl - Webprogrammierung.

Paradox Funktionen

<<px_insert_record

px_numfields>>

px_new

(PECL paradox >= 1.0.0)

px_newCreate a new paradox object

Beschreibung

resource px_new ( void )

Create a new paradox object. You will have to call this function before any further functions. px_new() does not create any file on the disk, it just creates an instance of a paradox object. This function must not be called if the object oriented interface is used. Use new paradox_db() instead.

Rückgabewerte

Returns FALSE on failure.

Beispiele

Beispiel #1 Opening a Paradox database

<?php
if(!$pxdoc px_new()) {
  
/* Error handling */
}
$fp fopen("test.db""r");
if(!
px_open_fp($pxdoc$fp)) {
  
/* Error handling */
}
// ...
px_close($pxdoc);
px_delete($pxdoc);
fclose($fp);
?>

If you prefer the object oriented API, then the above example will look like the following.

Beispiel #2 Opening a Paradox database

<?php
$fp 
fopen("test.db""r");
$pxdoc = new paradox_db();
if(!
$pxdoc->open_fp($fp)) {
  
/* Error handling */
}
// ...
$pxdoc->close();
fclose($fp);
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)