Question

On PECL, there is the latest Windows DLL in version 1.3.3. Unfortunately, they didn't provide one for version 1.3.4. I'd like to get the DLL from some reputable source. Otherwise I'll have to compile it from sources myself in which case some hint as to what should be taken care of would be much appreciated.

Was it helpful?

Solution

We solved this problem by using non-object-oriented extension ibm_db2. Fortunately, our code wasn't using many calls or special features so we were able to refactor our code quite quickly, e.g. from:

$stmt = $conn->prepare($sql);

to:

$stmt = db2_prepare($conn, $sql);
Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top