<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Sun, 07 Sep 2008 01:42:40 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Matthew Turland's Blog:  PHP 5.2 and SQL Server 2000 on Windows XP]]></title>
      <guid>http://www.phpdeveloper.org/news/10163</guid>
      <link>http://www.phpdeveloper.org/news/10163</link>
      <description><![CDATA[<p>
<i>Matthew Turland</i> has <a href="http://ishouldbecoding.com/2008/05/10/php-5-2-and-sql-server-2000-on-windows-xp">posted about</a> his experience working with a Windows XP system trying to get PHP 5.2 and SQL Server 2000 to play nicely together:
</p>
<blockquote>
Recently at work, I was tasked with finding a method to retrieve data from a third-party SQL Server 2000-based system into our own MySQL-based application. It's worth noting that both system are behind their own firewalls and I was trying to bear security in mind as I did this.
</blockquote>
<p>
Some highlights of his work included using <a href="http://www.citrix.com/English/ps2/products/product.asp?contentID=13972&ntef=hp_nav_US">GoToAssist</a> to get to the system, using <a href="http://sqlmanager.net/products/mssql/manager/">EMS SQL Manager</a> to work with the SQL server itself and some of the PHP code he "threw at it" to grab the info he needed from the database (with the PDO drivers).
</p>]]></description>
      <pubDate>Mon, 12 May 2008 12:09:42 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Michael Kimsal's Blog: SQL Server driver for PHP5]]></title>
      <guid>http://www.phpdeveloper.org/news/9611</guid>
      <link>http://www.phpdeveloper.org/news/9611</link>
      <description><![CDATA[<p>
In a <a href="http://michaelkimsal.com/blog/?p=450">new blog entry</a>, <i>Michael Kimsal</i> points out a driver that Microsoft has released (during the end of last year) that allows PHP5 applications to connect directly to a SQL Server database.
</p>
<blockquote>
This isn't replacing <a href="http://freetds.org/">freetds</a> any time soon.  I guess I'm still wondering what the market for "PHP apps deployed on Windows talking to SQL Server" really is - most of the shared hosting accounts I've seen, even on Windows, offer MySQL or Access as the database. 
</blockquote>
<p>
He also points out <a href="http://channel9.msdn.com/Showpost.aspx?postid=354811">a video</a> that was shot of the development team talking about the driver (here's <a href="http://blogs.msdn.com/sqlphp/">their blog</a> too).
</p>]]></description>
      <pubDate>Tue, 12 Feb 2008 08:48:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Alex Netkachov's Blog: Microsoft's SQL Server 2005 driver for PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/8860</guid>
      <link>http://www.phpdeveloper.org/news/8860</link>
      <description><![CDATA[<p>
<i>Alex Netkachov</i> has posted some of <a href="http://www.alexatnet.com/node/93">his own thoughts</a> about Microsoft's recent SQL server 205 driver for PHP:
</p>
<blockquote>
I can add that a few years ago I had bad experience with MS SQL PHP extension. It was just impossible to use it in production environment. These days MS understand that PHP is a very popular programming language and step forward to the community
</blockquote>
<p>
He also <a href="http://www.alexatnet.com/node/93">includes a list</a> of some of the things that the driver includes/makes possible such as the fact that it's not a PDO or OOP driver, that there's no source posted for it and that it does support data streams.
</p>]]></description>
      <pubDate>Thu, 18 Oct 2007 17:21:58 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Stuart Herbert's Blog: Microsoft's First PHP Extension: SQL Server 2005 Support]]></title>
      <guid>http://www.phpdeveloper.org/news/8848</guid>
      <link>http://www.phpdeveloper.org/news/8848</link>
      <description><![CDATA[<p>
Following the release of Microsoft's <a href="http://www.microsoft.com/sql/technologies/php/default.mspx">SQL Server extension</a> for PHP, <i>Stuart Herbert</i> has <a href="http://blog.stuartherbert.com/php/2007/10/16/microsofts-first-php-extension-sql-server-2005-support/">posted some of his thoughts</a> on the matter to his blog.
</p>
<p>
He's broken it up into two sections: "Why Is It Important For Microsoft To Support PHP On Windows?" and "What's Wrong With The Existing MSSQL Extension For PHP?" He answers the first question by mentioning the new options that it opens up for those that want to run both Windows and PHP and still use their SQL Server databases.
</p>
<p>
Question two gives four things that he's already seen wrong with the extension including it's limited varchar support, no PDO drivers and the poor level of error reporting.
</p>
<p>
The SQL Server 2005 driver for PHP "is a PHP 5 extension that allows the reading and writing of SQL Server data from within PHP scripts. It provides a procedural interface for accessing data in all Editions of SQL Server 2005 and SQL Server 2000 (including Express Edition), and makes use of PHP features, including PHP streams to read and write large objects."
</p>]]></description>
      <pubDate>Tue, 16 Oct 2007 09:31:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Ligaya Turmelle's Blog: SQL Server DNS]]></title>
      <guid>http://www.phpdeveloper.org/news/6901</guid>
      <link>http://www.phpdeveloper.org/news/6901</link>
      <description><![CDATA[<p>
Working with multiple databases in your scripts can be a pain at times as <i>Ligaya Turmelle</i> found out in <a href="http://www.khankennels.com/blog/index.php/archives/2006/12/14/sql-server-dns/">getting a PDO connection</a> working to a SQL Server in one of her scripts.
</p>
<blockquote>
My DSN just was not right and wouldn't play - my host string was off and any permutation I used wasn't working. Looked at the PDO docs, the DSN docs in the manual, connectionstrings.com and no love.
</blockquote>
<p>
Her <a href="http://www.khankennels.com/blog/index.php/archives/2006/12/14/sql-server-dns/">final fix</a> involved setting up an "instance" of her SQL server to point to the host. Her code is included.
</p>]]></description>
      <pubDate>Thu, 14 Dec 2006 16:10:00 -0600</pubDate>
    </item>
  </channel>
</rss>
