<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=MDB2_Driver_pgsql</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/12931" />
      <rdf:li rdf:resource="http://pear.php.net/bug/11802" />
      <rdf:li rdf:resource="http://pear.php.net/bug/7059" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/12931">
      <title>MDB2_Driver_pgsql: Feature/Change Request 12931 [Open] Add cascading to dropTable?</title>
      <link>http://pear.php.net/bugs/12931</link>
      <content:encoded><![CDATA[<pre>MDB2_Driver_pgsql Feature/Change Request
Reported by caphrim007
2008-01-18T12:07:42+00:00
PHP: 5.2.5 OS: RHEL 4 Package Version: 1.4.1

Description:
------------
I was hoping that CASCADE functionality could be added to the pgsql manager manager so that it would also drop tables that inherit from a table being dropped.</pre>]]></content:encoded>
      <description><![CDATA[<pre>MDB2_Driver_pgsql Feature/Change Request
Reported by caphrim007
2008-01-18T12:07:42+00:00
PHP: 5.2.5 OS: RHEL 4 Package Version: 1.4.1

Description:
------------
I was hoping that CASCADE functionality could be added to the pgsql manager manager so that it would also drop tables that inherit from a table being dropped.</pre>]]></description>
      <dc:date>2008-01-18T12:07:42+00:00</dc:date>
      <dc:creator>caphrim007 &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>MDB2_Driver_pgsql Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/11802">
      <title>MDB2_Driver_pgsql: Feature/Change Request 11802 [Open] Methods to check connection status and busy</title>
      <link>http://pear.php.net/bugs/11802</link>
      <content:encoded><![CDATA[<pre>MDB2_Driver_pgsql Feature/Change Request
Reported by pberry
2007-08-08T20:27:51+00:00
PHP: Irrelevant OS: N/A Package Version: 1.4.1

Description:
------------
Neither the driver or MDB2 contains a way to manually 
check if a connection is still active and whether or not 
it's busy.

Two methods that I've added to MDB2_Driver_pgsql are 
connectionIsBusy() and pingConnection(), it would be nice 
if these or something similar could be rolled into main.

Test script:
---------------
function connectionIsBusy(){
   if(pg_connection_busy($this-&gt;connection)){
        return TRUE ;
   }
}

function pingConnection(){
 if(pg_connection_status($this-&gt;connection) === PGSQL_CONNECTION_OK){
     return TRUE ;
  }
}</pre>]]></content:encoded>
      <description><![CDATA[<pre>MDB2_Driver_pgsql Feature/Change Request
Reported by pberry
2007-08-08T20:27:51+00:00
PHP: Irrelevant OS: N/A Package Version: 1.4.1

Description:
------------
Neither the driver or MDB2 contains a way to manually 
check if a connection is still active and whether or not 
it's busy.

Two methods that I've added to MDB2_Driver_pgsql are 
connectionIsBusy() and pingConnection(), it would be nice 
if these or something similar could be rolled into main.

Test script:
---------------
function connectionIsBusy(){
   if(pg_connection_busy($this-&gt;connection)){
        return TRUE ;
   }
}

function pingConnection(){
 if(pg_connection_status($this-&gt;connection) === PGSQL_CONNECTION_OK){
     return TRUE ;
  }
}</pre>]]></description>
      <dc:date>2007-08-08T20:27:51+00:00</dc:date>
      <dc:creator>pberry &amp;#x61;&amp;#116; stellaconcepts &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>MDB2_Driver_pgsql Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/7059">
      <title>MDB2_Driver_pgsql: Feature/Change Request 7059 [Open] pgsql error code mapping cannot handle localized error messages</title>
      <link>http://pear.php.net/bugs/7059</link>
      <content:encoded><![CDATA[<pre>MDB2_Driver_pgsql Feature/Change Request
Reported by sacher@...
2006-03-08T05:39:04+00:00
PHP: 5.0.4 OS: Linux SuSE10.0 i386 Package Version: 

Description:
------------
The documentation says that a sequence will automatically  be created on nextID(.., true). 

nextID returns a DB_Error like this:
DB Error: unknown error 
-1
SELECT NEXTVAL('test_seq') [nativecode=FEHLER:  Relation ÃÂ»test_seqÃÂ« existiert nicht]
(relation does not exist)

Reason seems to be the return code of the used PostgreSQL which is not the one expected by nextID().

If uncomment the condition in 
DB/pqsql.php Line 681 $result-&gt;getCode() == DB_ERROR_NOSUCHTABLE
everything works fine.

Used db is PostgreSQL 7.4.8</pre>]]></content:encoded>
      <description><![CDATA[<pre>MDB2_Driver_pgsql Feature/Change Request
Reported by sacher@...
2006-03-08T05:39:04+00:00
PHP: 5.0.4 OS: Linux SuSE10.0 i386 Package Version: 

Description:
------------
The documentation says that a sequence will automatically  be created on nextID(.., true). 

nextID returns a DB_Error like this:
DB Error: unknown error 
-1
SELECT NEXTVAL('test_seq') [nativecode=FEHLER:  Relation ÃÂ»test_seqÃÂ« existiert nicht]
(relation does not exist)

Reason seems to be the return code of the used PostgreSQL which is not the one expected by nextID().

If uncomment the condition in 
DB/pqsql.php Line 681 $result-&gt;getCode() == DB_ERROR_NOSUCHTABLE
everything works fine.

Used db is PostgreSQL 7.4.8</pre>]]></description>
      <dc:date>2006-03-12T04:13:56+00:00</dc:date>
      <dc:creator>sacher &amp;#x61;&amp;#116; manetmail &amp;#x64;&amp;#111;&amp;#x74; de</dc:creator>
      <dc:subject>MDB2_Driver_pgsql Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
