<?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 and WP &gt; 2.8</title>
	<atom:link href="https://rathercurious.no3.co.uk/archives/290/feed" rel="self" type="application/rss+xml" />
	<link>https://rathercurious.no3.co.uk/archives/290</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: Joseph Mark Jarvis</title>
		<link>https://rathercurious.no3.co.uk/archives/290/comment-page-1#comment-9496</link>
		<dc:creator><![CDATA[Joseph Mark Jarvis]]></dc:creator>
		<pubDate>Fri, 26 Feb 2010 22:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/?p=290#comment-9496</guid>
		<description><![CDATA[@Justin

phpinfo() reports pdo and pdo_sqlite are loaded:

PDO
     PDO support: enabled
     PDO drivers: sqlite, mysql, sqlite2

pdo_sqlite
     PDO Driver for SQLite 3.x: enabled
     PECL Module version (bundled) 1.0.1 $Id: pdo_sqlite.c 272374 2008-12-31 11:17:49Z sebastian $
     SQLite Library: 3.3.7]]></description>
		<content:encoded><![CDATA[<p>@Justin</p>
<p>phpinfo() reports pdo and pdo_sqlite are loaded:</p>
<p>PDO<br />
     PDO support: enabled<br />
     PDO drivers: sqlite, mysql, sqlite2</p>
<p>pdo_sqlite<br />
     PDO Driver for SQLite 3.x: enabled<br />
     PECL Module version (bundled) 1.0.1 $Id: pdo_sqlite.c 272374 2008-12-31 11:17:49Z sebastian $<br />
     SQLite Library: 3.3.7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>https://rathercurious.no3.co.uk/archives/290/comment-page-1#comment-9419</link>
		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Tue, 23 Feb 2010 06:36:15 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/?p=290#comment-9419</guid>
		<description><![CDATA[Joseph
in order to use PDO_SQLITE you need the pdo library and the pdo_sqlite library.
different platforms load these in different manners as is normal for php. 
You can find more about them here: http://fr.php.net/manual/en/pdo.installation.php

you can verify whether they are loaded by examining the output of phpinfo()]]></description>
		<content:encoded><![CDATA[<p>Joseph<br />
in order to use PDO_SQLITE you need the pdo library and the pdo_sqlite library.<br />
different platforms load these in different manners as is normal for php.<br />
You can find more about them here: <a href="http://fr.php.net/manual/en/pdo.installation.php" rel="nofollow">http://fr.php.net/manual/en/pdo.installation.php</a></p>
<p>you can verify whether they are loaded by examining the output of phpinfo()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Mark Jarvis</title>
		<link>https://rathercurious.no3.co.uk/archives/290/comment-page-1#comment-9415</link>
		<dc:creator><![CDATA[Joseph Mark Jarvis]]></dc:creator>
		<pubDate>Tue, 23 Feb 2010 02:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/?p=290#comment-9415</guid>
		<description><![CDATA[@Justin

* Which are the relevant PDO extensions?
* How does one verify they&#039;re loaded?

Thanks.]]></description>
		<content:encoded><![CDATA[<p>@Justin</p>
<p>* Which are the relevant PDO extensions?<br />
* How does one verify they&#8217;re loaded?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bvandrunen</title>
		<link>https://rathercurious.no3.co.uk/archives/290/comment-page-1#comment-9355</link>
		<dc:creator><![CDATA[bvandrunen]]></dc:creator>
		<pubDate>Fri, 19 Feb 2010 20:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/?p=290#comment-9355</guid>
		<description><![CDATA[Well here is the situation, hopefully you can understand it: Right now I am working on automating wordpress -&gt; meaning when I click &quot;install&quot; in our software it runs a script which buys a domain, installs wordpress, sets up database and sets up our customization.  Right now it works great and we use a XML feed to implement our data for each site for our customers.  

As of right now we are using an XML website that was created (not on wordpress) But we would like to use wordpress because it will allow our customers to create blogs for themselves if they like.  We get about 20-30 new customers a day.

This is where the problem comes in: the database we use right now for all of our customers is based in MS SQL and we have been running it for 6-7 years so we aren&#039;t about to change it.  But we want to use all of our variable such as (@businessname etc) for our database instead of XML feeds - faster, easier to maintain etc.  

Therefore the biggest reason I want to get wordpress on MS SQL is so that we can use our current database with wordpress without having to move it to MYSQL (which won&#039;t happen).  We also would rather use a database instead of XML feeds.

Hopefully this helps you out.  Currently my system works but we have to maintain 2 databases (MYSQL and MS SQL) and have to use XML feeds instead of database variables.  Any suggestions on how to make this situation would be greatly appreciated.  Thanks]]></description>
		<content:encoded><![CDATA[<p>Well here is the situation, hopefully you can understand it: Right now I am working on automating wordpress -&gt; meaning when I click &#8220;install&#8221; in our software it runs a script which buys a domain, installs wordpress, sets up database and sets up our customization.  Right now it works great and we use a XML feed to implement our data for each site for our customers.  </p>
<p>As of right now we are using an XML website that was created (not on wordpress) But we would like to use wordpress because it will allow our customers to create blogs for themselves if they like.  We get about 20-30 new customers a day.</p>
<p>This is where the problem comes in: the database we use right now for all of our customers is based in MS SQL and we have been running it for 6-7 years so we aren&#8217;t about to change it.  But we want to use all of our variable such as (@businessname etc) for our database instead of XML feeds &#8211; faster, easier to maintain etc.  </p>
<p>Therefore the biggest reason I want to get wordpress on MS SQL is so that we can use our current database with wordpress without having to move it to MYSQL (which won&#8217;t happen).  We also would rather use a database instead of XML feeds.</p>
<p>Hopefully this helps you out.  Currently my system works but we have to maintain 2 databases (MYSQL and MS SQL) and have to use XML feeds instead of database variables.  Any suggestions on how to make this situation would be greatly appreciated.  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>https://rathercurious.no3.co.uk/archives/290/comment-page-1#comment-9354</link>
		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Fri, 19 Feb 2010 18:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://rathercurious.net/?p=290#comment-9354</guid>
		<description><![CDATA[I don&#039;t think that he ever published it.  
it was not a plugin as such but a first stab of an MS Sql driver for my plugin.

unless you are a database guru, i would counsel against MS Sql.  Apart from the fact that it is terrifyingly expensive and needs a heavyweight server to power it, why would you want it to power a simple blog?

if you can run mysql then i&#039;d stay with it.  if you want the benefits of an encapsulated system like sqlite, then most probably your php installation already supports it.  all you need to do is set the DB_TYPE definition to &#039;sqlite&#039; and everything should work.

i keep promising to have a go porting to mssql but inertia always defeats me.  I don&#039;t have a windows system to test on, nor do I have ms sql (although i guess i could use sql express or whatever the free version is called).  there are several inconsistencies with sql ansi that would annoy me and, regrettably, the client libraries for php&lt;-&gt;mssql are really not great.  very buggy with big fields.  could get around it, perhaps, with odbc but then the odbc client libraries are hardly paragons of virtue themselves...

looking forward to hearing why you want ms sql.]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t think that he ever published it.<br />
it was not a plugin as such but a first stab of an MS Sql driver for my plugin.</p>
<p>unless you are a database guru, i would counsel against MS Sql.  Apart from the fact that it is terrifyingly expensive and needs a heavyweight server to power it, why would you want it to power a simple blog?</p>
<p>if you can run mysql then i&#8217;d stay with it.  if you want the benefits of an encapsulated system like sqlite, then most probably your php installation already supports it.  all you need to do is set the DB_TYPE definition to &#8216;sqlite&#8217; and everything should work.</p>
<p>i keep promising to have a go porting to mssql but inertia always defeats me.  I don&#8217;t have a windows system to test on, nor do I have ms sql (although i guess i could use sql express or whatever the free version is called).  there are several inconsistencies with sql ansi that would annoy me and, regrettably, the client libraries for php< ->mssql are really not great.  very buggy with big fields.  could get around it, perhaps, with odbc but then the odbc client libraries are hardly paragons of virtue themselves&#8230;</p>
<p>looking forward to hearing why you want ms sql.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
