<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: PDO For WordPress &#8211; First Public Release</title>
	<atom:link href="https://rathercurious.no3.co.uk/archives/20/feed" rel="self" type="application/rss+xml" />
	<link>https://rathercurious.no3.co.uk/archives/20</link>
	<description>A home for my coding projects</description>
	<lastBuildDate>Fri, 26 Feb 2010 22:24:46 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.16</generator>
	<item>
		<title>By: Justin</title>
		<link>https://rathercurious.no3.co.uk/archives/20/comment-page-1#comment-8</link>
		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Mon, 19 Nov 2007 23:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/archives/20#comment-8</guid>
		<description><![CDATA[thanks.  i&#039;ll cut your earlier comment a bit.  it set me on the right track though.

an error had crept in to the mysql_* disabling code in db.php.  i had forgotten to escape some round brackets in a regex.  

the other error is, i think, also easily fixed.  i&#039;ll post revised code shortly]]></description>
		<content:encoded><![CDATA[<p>thanks.  i&#8217;ll cut your earlier comment a bit.  it set me on the right track though.</p>
<p>an error had crept in to the mysql_* disabling code in db.php.  i had forgotten to escape some round brackets in a regex.  </p>
<p>the other error is, i think, also easily fixed.  i&#8217;ll post revised code shortly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fnumatic</title>
		<link>https://rathercurious.no3.co.uk/archives/20/comment-page-1#comment-7</link>
		<dc:creator><![CDATA[fnumatic]]></dc:creator>
		<pubDate>Mon, 19 Nov 2007 22:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/archives/20#comment-7</guid>
		<description><![CDATA[oh sorry that&#039;s probably a way to much

my first issue was dealing with
function changeFiles_2_4() in db.php

you want to modify the mysql_get_server_info() statement. and this was happened twice per file.
should be: 
_mysql_get_server_info()/*automatically changed by sqlite compat*/
but was:
__mysql_get_server_info()/*automatically changed by sqlite compat*//*automatically changed by sqlite compat*/]]></description>
		<content:encoded><![CDATA[<p>oh sorry that&#8217;s probably a way to much</p>
<p>my first issue was dealing with<br />
function changeFiles_2_4() in db.php</p>
<p>you want to modify the mysql_get_server_info() statement. and this was happened twice per file.<br />
should be:<br />
_mysql_get_server_info()/*automatically changed by sqlite compat*/<br />
but was:<br />
__mysql_get_server_info()/*automatically changed by sqlite compat*//*automatically changed by sqlite compat*/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fnumatic</title>
		<link>https://rathercurious.no3.co.uk/archives/20/comment-page-1#comment-6</link>
		<dc:creator><![CDATA[fnumatic]]></dc:creator>
		<pubDate>Mon, 19 Nov 2007 22:11:42 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/archives/20#comment-6</guid>
		<description><![CDATA[the sql issue:

Queries made or created this session were

---edited by Justin---

   4. Prepare: UPDATE IGNORE wp_posts SET post_author = ? , post_date = ? , post_date_gmt = ? , post_content = ? , post_content_filtered = ? , post_title = ? , post_excerpt = ? , post_status = ? , post_type = ? , comment_status = ? , ping_status = ? , post_password = ? , post_name = ? , to_ping = ? , pinged = ? , post_modified = ? , post_modified_gmt = ? , post_parent = ? , menu_order = ? WHERE ID = 6
---
Error occurred at line 313 in Function prepareQuery.
Error message was: Problem preparing the PDO SQL Statement. Error was Array ( [0] =&gt; HY000 [1] =&gt; 1 [2] =&gt; near &quot;wp_posts&quot;: syntax error )
]]></description>
		<content:encoded><![CDATA[<p>the sql issue:</p>
<p>Queries made or created this session were</p>
<p>&#8212;edited by Justin&#8212;</p>
<p>   4. Prepare: UPDATE IGNORE wp_posts SET post_author = ? , post_date = ? , post_date_gmt = ? , post_content = ? , post_content_filtered = ? , post_title = ? , post_excerpt = ? , post_status = ? , post_type = ? , comment_status = ? , ping_status = ? , post_password = ? , post_name = ? , to_ping = ? , pinged = ? , post_modified = ? , post_modified_gmt = ? , post_parent = ? , menu_order = ? WHERE ID = 6<br />
&#8212;<br />
Error occurred at line 313 in Function prepareQuery.<br />
Error message was: Problem preparing the PDO SQL Statement. Error was Array ( [0] =&gt; HY000 [1] =&gt; 1 [2] =&gt; near &#8220;wp_posts&#8221;: syntax error )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>https://rathercurious.no3.co.uk/archives/20/comment-page-1#comment-5</link>
		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Mon, 19 Nov 2007 21:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/archives/20#comment-5</guid>
		<description><![CDATA[rather annoyingly, i&#039;ve just downloaded wp2.3.1 and found a healthy number of errors in my code.  i had built and tested on version 2.4-bleeding.

i&#039;m looking into the errors and will post a cumulative bug fix.]]></description>
		<content:encoded><![CDATA[<p>rather annoyingly, i&#8217;ve just downloaded wp2.3.1 and found a healthy number of errors in my code.  i had built and tested on version 2.4-bleeding.</p>
<p>i&#8217;m looking into the errors and will post a cumulative bug fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>https://rathercurious.no3.co.uk/archives/20/comment-page-1#comment-4</link>
		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Mon, 19 Nov 2007 21:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/archives/20#comment-4</guid>
		<description><![CDATA[Hi
you mention two issues:

1. schema.php being called twice per script; and
2. an SQL error.

dealing with each in turn

1. this surprises me.  schema.php is only called by pdoEngine.php when the database does NOT exist as a file in the filesystem - and should only be callable once per installation.  have you by any chance changed the definitions in wp-content/db.php?  if not, can you post your changes?

2. this needs looking at and is difficult for me to reproduce as my installation does not suffer from these errors (this blog has been operating error free for weeks).  to be certain, i&#039;d need to know what the query was that was being mangled.    can you add this definition to your wp-config.php file:
define(&#039;PDO_DEBUB&#039;, true);
and post the queries that are bailed out?  if you don&#039;t fancy posting publicly, then mail me @ justin.adie NEAR adieandco.com]]></description>
		<content:encoded><![CDATA[<p>Hi<br />
you mention two issues:</p>
<p>1. schema.php being called twice per script; and<br />
2. an SQL error.</p>
<p>dealing with each in turn</p>
<p>1. this surprises me.  schema.php is only called by pdoEngine.php when the database does NOT exist as a file in the filesystem &#8211; and should only be callable once per installation.  have you by any chance changed the definitions in wp-content/db.php?  if not, can you post your changes?</p>
<p>2. this needs looking at and is difficult for me to reproduce as my installation does not suffer from these errors (this blog has been operating error free for weeks).  to be certain, i&#8217;d need to know what the query was that was being mangled.    can you add this definition to your wp-config.php file:<br />
define(&#8216;PDO_DEBUB&#8217;, true);<br />
and post the queries that are bailed out?  if you don&#8217;t fancy posting publicly, then mail me @ justin.adie NEAR adieandco.com</p>
]]></content:encoded>
	</item>
</channel>
</rss>
