PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

px_numfields> <px_insert_record
Last updated: Fri, 14 Nov 2008

view this page in

px_new

(PECL paradox:1.0-1.4.1)

px_newCreate a new paradox object

Descrição

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.

Valor Retornado

Returns FALSE on failure.

Exemplos

Exemplo #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.

Exemplo #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);
?>

Veja Também



add a note add a note User Contributed Notes
px_new
There are no user contributed notes for this page.

px_numfields> <px_insert_record
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites