<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>1st Byte Solutions &#187; Databases</title>
	<atom:link href="http://www.1stbyte.com/category/databases/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1stbyte.com</link>
	<description>Company site for Greg Fischer { GregTheGeek }</description>
	<lastBuildDate>Tue, 09 Mar 2010 07:52:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Compile Apache 2 with PHP 4 and MySQL 5 (while MySQL 4 is also installed)</title>
		<link>http://www.1stbyte.com/2006/04/02/compile-apache-2-with-php-4-and-mysql-5-while-mysql-4-is-also-installed/</link>
		<comments>http://www.1stbyte.com/2006/04/02/compile-apache-2-with-php-4-and-mysql-5-while-mysql-4-is-also-installed/#comments</comments>
		<pubDate>Sun, 02 Apr 2006 17:29:39 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.1stbyte.com/2006/04/02/compile-apache-2-with-php-4-and-mysql-5-while-mysql-4-is-also-installed/</guid>
		<description><![CDATA[Download and unpack Apache and PHP. MySQL 5 is install already. (as per another blog: http://www.1stbyte.com/2006/04/02/mysql-5-upgrade-compiled/
Make sure you have the proper dev packages. In my case I had to install &#8216;libflex&#8217; and &#8216;libgdbm-dev&#8217; using apt-get install to install PHP. (I have Debian Unstable)
./configure &#8211;prefix=/var/httpd &#8211;enable-so &#8211;enable-proxy &#8211;enable-proxy-ftp &#8211;enable-proxy-http &#8211;enable-ssl &#8211;enable-headers &#8211;enable-rewrite &#8211;enable-cgi &#8211;enable-deflate &#8211;enable-mime-magic &#8211;enable-dav [...]]]></description>
		<wfw:commentRss>http://www.1stbyte.com/2006/04/02/compile-apache-2-with-php-4-and-mysql-5-while-mysql-4-is-also-installed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mysql 5 upgrade &#8211; compiled</title>
		<link>http://www.1stbyte.com/2006/04/02/mysql-5-upgrade-compiled/</link>
		<comments>http://www.1stbyte.com/2006/04/02/mysql-5-upgrade-compiled/#comments</comments>
		<pubDate>Sun, 02 Apr 2006 17:05:16 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.1stbyte.com/2006/04/02/mysql-5-upgrade-compiled/</guid>
		<description><![CDATA[I just upgraded my MySQL server from 5.0.7 to 5.0.10.  I wanted to make a few notes about what I did to set it up.
1. I compiled MySQL 5.0.10-beta.
./configure --prefix=/var/mysql5010
--with-unix-socket-path=/tmp/mysql5.sock
--with-mysqld-ldflags=-all-static
--enable-assembler
--with-low-memory
--with-named-curses-libs=/lib/libncurses.so.5
--with-mysqld-user=mysql
2. Did a make &#38;&#38; make install
3. Stop mysql507 (on my server I created a script to stop and start mysql and mysql5, this way [...]]]></description>
		<wfw:commentRss>http://www.1stbyte.com/2006/04/02/mysql-5-upgrade-compiled/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Retrieve or return an output parameter from a Mysql stored procedure in Zope</title>
		<link>http://www.1stbyte.com/2006/04/02/retrieve-or-return-an-output-parameter-from-a-mysql-stored-procedure-in-zope/</link>
		<comments>http://www.1stbyte.com/2006/04/02/retrieve-or-return-an-output-parameter-from-a-mysql-stored-procedure-in-zope/#comments</comments>
		<pubDate>Sun, 02 Apr 2006 17:03:18 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Zope]]></category>

		<guid isPermaLink="false">http://www.1stbyte.com/2006/04/02/retrieve-or-return-an-output-parameter-from-a-mysql-stored-procedure-in-zope/</guid>
		<description><![CDATA[ Zope 2.7.6 &#8211; Mysql 5.0.7. I have always thought that output parameters from stored procedures were not useable in Zope&#8217;s ZSQL methods, but a few minutes ago is suddenly occured to me that I could do it by using the &#8220;sql_delimiter&#8221; function in Zope.  To be quick, put something like this in a [...]]]></description>
		<wfw:commentRss>http://www.1stbyte.com/2006/04/02/retrieve-or-return-an-output-parameter-from-a-mysql-stored-procedure-in-zope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get ZMySQLDA to retrieve MySQL Stored Procedures</title>
		<link>http://www.1stbyte.com/2005/07/06/get-zmysqlda-to-retrieve-mysql-stored-procedures/</link>
		<comments>http://www.1stbyte.com/2005/07/06/get-zmysqlda-to-retrieve-mysql-stored-procedures/#comments</comments>
		<pubDate>Wed, 06 Jul 2005 07:06:54 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Zope]]></category>

		<guid isPermaLink="false">http://www.1stbyte.com/2006/03/22/get-zmysqlda-to-retrieve-mysql-stored-procedures/</guid>
		<description><![CDATA[Quick, before I forget!!
Tired of &#8220;can&#8217;t return a result set in the given context&#8221; errors when calling stored procedures in Mysql 5?
The ultra fast how-to on returning records from a multi-column multi-record stored procedure in Mysql 5 using Zope/Python!
In the ZMySQLDA, edit the db.py file and add the lines below in the _parse_connection_string function:

 #added [...]]]></description>
		<wfw:commentRss>http://www.1stbyte.com/2005/07/06/get-zmysqlda-to-retrieve-mysql-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
