Skip to content

Category Archives: pecl

PHP : ingres-1.4.2 released

Today I have released version 1.4.2 of the Ingres PECL extension. Mainly another bug fix release however I have reduced the memory footprint of blob operations and made some improvements with respect to UNICODE handing. In addition I supply a sample configuration file, ingres.ini, that has all the php.ini settings. You can either copy and [...]

Share

Bouncy Bouncy : Dear Carlos….

Using a post to respond to an email is hardly an internet first but it is for me. I have been talking with Carlos, from Portugal, who is looking for a DLL of the latest Ingres PECL code for PHP 4.x. For those of you who would also like a copy – you can get [...]

Share

New PECL release

I have finally put out a release of the PECL driver for Ingres – you can get hold of the package from http://pecl.php.net/ingres or if you are a windows user pre-built DLLs can be found on http://pecl4win.php.net. See the CHANGELOG for the new additions. powered by performancing firefox

Share

Example : Ingres LOBs and PHP

Since the lob code for Ingres PECL uses an undocumented feature, namely, parameter typing – I have included below a code snippet to get people started: SQL Schema: create table blobs ( blob_name varchar(255) not null, blob_data long byte not null ); PHP code <?php $options = array (“blob_segment_length”=>8192); $link = ingres_connect(“php”,”",”",$options); if (ingres_errno($link) != [...]

Share

LOB support (finally)

I have finally submitted code for handling LOBs within the PECL Ingres extension. Only a minor memory leak to sort out and then I will release version 1.3.1. See CHANGELOG to see what else has happened. [tags]ingres, php, pecl[/tags]

Share

about to release a new version… however

Since Ingres 2006 has moved over to the GPL I am unable to publish any new releases. The CTO for Ingres, Dave Dargo, has promised this will be addressed as I am sure there are other FOSS projects that want to make use of Ingres but will not be able to use it due to [...]

Share

Version 1.2 (alpha) available

Version 1.2 of the PHP PECL extension ingres has been released. Get the code from http://pecl.php.net/get/ingres. Download pre-built windows binaries from http://pecl4win.php.net/ext.php/php_ingres.dll. Below are the changes for the release: version 1.2 Fixed memory allocation when handling null blobs [grantc 04-10-05] Fix php_ii_fetch() to allow the fetching of multiple blobs [grantc 22-09-05] Fix php_ii_convert_data() to address [...]

Share

preliminary blob fetching

I have submitted code that will allow the fetching of multiple BLOBs from Ingres. A windows DLL for PHP 5.0.5 can be got from here. ingres, php, pecl

Share

Version 1.1 (alpha) available

Last friday, version 1.1 (alpha) was release to PECL. The source code can be downloaded from there for UNIX/Linux, even Windows if you know how to do builds. For non-dev types its possible to download the latest php_ingres.dll from snaps.php.net, (for PHP 5.0). Not quite sure what will happen with getting an updated dll for [...]

Share

php_ingres.dll for 4.3.11

I have made available the php_ingres.dll for php 4.3.11. It was built against 3.0.2 build 110. I have no idea if it will work against Ingres 2.6 or before. If you need such a dll please let me know. Download the r3 linked extension from here. All new development work will require PHP 5.x. There [...]

Share