<feed xmlns='http://www.w3.org/2005/Atom'>
<title>adodb/drivers/adodb-oci8po.inc.php, branch v5.20.11</title>
<subtitle>adodb PHP Database Abstraction Layer
</subtitle>
<id>https://git.rdm1.uk/adodb/.git/atom?h=v5.20.11</id>
<link rel='self' href='https://git.rdm1.uk/adodb/.git/atom?h=v5.20.11'/>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/'/>
<updated>2018-03-30T00:29:00Z</updated>
<entry>
<title>Bump version to 5.20.11</title>
<updated>2018-03-30T00:29:00Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2018-03-30T00:29:00Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=37b20820ba512ae684c06b93171921037bc6704b'/>
<id>urn:sha1:37b20820ba512ae684c06b93171921037bc6704b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump version to 5.20.10</title>
<updated>2018-03-08T22:32:18Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2018-03-08T22:32:18Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=2db8794c142ecc9ca9c5398737bb35ca39031fe3'/>
<id>urn:sha1:2db8794c142ecc9ca9c5398737bb35ca39031fe3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump version to 5.20.9</title>
<updated>2016-12-21T17:19:42Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-12-21T17:19:42Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=f601748cca1ccb86dfd427620a1692a70e681075'/>
<id>urn:sha1:f601748cca1ccb86dfd427620a1692a70e681075</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump version to 5.20.8</title>
<updated>2016-12-17T14:18:16Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-12-17T14:18:16Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=1ff1d8817033d3e18da751e47d8db4a5053fe810'/>
<id>urn:sha1:1ff1d8817033d3e18da751e47d8db4a5053fe810</id>
<content type='text'>
</content>
</entry>
<entry>
<title>oci8po: fix SelectLimit() with prepared statements</title>
<updated>2016-12-17T13:13:52Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-12-17T13:13:52Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=b53a9639b1385c4b2e05bb8447c9b4d6aee62e77'/>
<id>urn:sha1:b53a9639b1385c4b2e05bb8447c9b4d6aee62e77</id>
<content type='text'>
The ADOdb_oci8::SelectLimit() method performs Oracle-specific query
optimization, manipulating the SQL to apply hints in a way that is not
compatible with the oci8po driver, due to conversion of query
parameters ('?' vs oci8 native ':xx').

To avoid the problem, we define the SelectLimit() method directly in
ADODB_oci8po, and rely on the slower ADOConnection::SelectLimit()
method from the base class.

Also, to avoid issues with prepared statements causing PHP to throw a
Warning: "oci_execute(): supplied resource is not a valid oci8
statement resource", we retrieve the prepared statement's SQL and pass
it on to ADOConnection::SelectLimit().

Fixes #282
</content>
</entry>
<entry>
<title>Bump version to 5.20.7</title>
<updated>2016-09-20T06:29:42Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-09-20T06:27:30Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=5022ed61cdda0950b404bedb01c52020f736526f'/>
<id>urn:sha1:5022ed61cdda0950b404bedb01c52020f736526f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update changelog</title>
<updated>2016-09-20T06:29:42Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-09-14T16:46:03Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=e5b5773c387b0b7e4c651cf54b0b51fc6a362f96'/>
<id>urn:sha1:e5b5773c387b0b7e4c651cf54b0b51fc6a362f96</id>
<content type='text'>
</content>
</entry>
<entry>
<title>oci8po: prevent segfault on php7</title>
<updated>2016-09-14T15:39:33Z</updated>
<author>
<name>Damyon Wiese</name>
<email>damyon@moodle.com</email>
</author>
<published>2016-07-12T08:44:23Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=58a2f2a80506520449dedb75fe6ab93dfd434b58'/>
<id>urn:sha1:58a2f2a80506520449dedb75fe6ab93dfd434b58</id>
<content type='text'>
The OCIFetchinto function is causing segfaults on php7 - probably
because the fields array is not initialised or it is optimised out. This
fixes just changes to use the safer function oci_fetch_array instead.

Fixes #259

Signed-off-by: Damien Regad &lt;dregad@mantisbt.org&gt;
</content>
</entry>
<entry>
<title>Bump version to 5.20.6</title>
<updated>2016-08-31T14:21:42Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-08-31T14:20:45Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=66b60ff95a969d7d79d385a25779e7d375a8040d'/>
<id>urn:sha1:66b60ff95a969d7d79d385a25779e7d375a8040d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump version to 5.20.5</title>
<updated>2016-08-10T11:08:40Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2016-08-10T11:08:40Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=7ce997d4c5957a1a96e7ab483ad088b15f02b191'/>
<id>urn:sha1:7ce997d4c5957a1a96e7ab483ad088b15f02b191</id>
<content type='text'>
</content>
</entry>
</feed>
