Hi!

I wrote like a year or less ago about an extension I've developed that uses
the library for reading Isis databases at www.openisis.org.

I would like to know if can I have it on PECL. (There is a lot of people in
latin-america who needs to use it, in europe too.)

I've named the extension isis and I've used the PHP conventions.  It's
stable enough however there are still some details I want to do.

I have not proposed the extension before because it was buggy.  But now it
runs fine on windows and unix (needs the lib previously installed).

Just to remember the api is:

Functions:
resource isis_open([string $dbname, [string $args]])
boolean isis_close(resource $dbid)
resource isis_search(string $term, resource $dbid)
resource isis_query(string $querystring, resource $dbid)
array isis_terms(string $term, resource $dbid)
array isis_fetch_array(resource $isis_result)
int isis_num_rows(resource $isis_result)
boolean isis_data_seek(resource $isis_result, int $row_number)
boolean isis_free_result(resource $isis_result)

INI entries:
isis.default_dir = string
isis.default_database = string (that is why isis_open may have no
parameters)

Best regards,

Braulio



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to