<?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>PLATFORMedia LLC &#187; mysql</title>
	<atom:link href="http://platformedia.com/oss-blog/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://platformedia.com</link>
	<description>Corporate Web Site</description>
	<lastBuildDate>Sun, 08 Jan 2012 06:55:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Funambol with MySQL on Fedora 10</title>
		<link>http://platformedia.com/oss-blog/funambol-with-mysql-on-fedora-10/</link>
		<comments>http://platformedia.com/oss-blog/funambol-with-mysql-on-fedora-10/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 20:45:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Funambol]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2009/09/funambol-with-mysql-on-fedora-10/</guid>
		<description><![CDATA[Much of this is adapted from the text of http://schattenschreiber.org/diary/2009/05/20/installing-the-funambol-bundled-server-under-ubuntu-server-amd64-mysql-lighttpd/
Installing funambol isn’t as easy as it might be &#8211; mostly because it ships with it&#8217;s own java/jre version, which I figure is needless duplication.  Here’s a little step-by-step guide for getting it installed nicely on Fedora.  You will need some command line literacy [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/funambol-with-mysql-on-fedora-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reset MythTV music database</title>
		<link>http://platformedia.com/oss-blog/reset-mythtv-music-database/</link>
		<comments>http://platformedia.com/oss-blog/reset-mythtv-music-database/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 22:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MythTV]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2008/08/reset-mythtv-music-database/</guid>
		<description><![CDATA[mysql -u mythtv -p mythconverg
delete from music_directories;delete from music_genres;delete from music_artists;delete from music_albums;delete from music_albumart;delete from music_songs;
and then reload all the music files by :
Utilities/Setup &#8211; Music Tools (which then rescans the files)
]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/reset-mythtv-music-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some MySQL compatibility functions for sqlite</title>
		<link>http://platformedia.com/oss-blog/some-mysql-compatibility-functions-for-sqlite/</link>
		<comments>http://platformedia.com/oss-blog/some-mysql-compatibility-functions-for-sqlite/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 14:42:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2008/07/some-mysql-compatibility-functions-for-sqlite/</guid>
		<description><![CDATA[Here are a couple of additional functions to increase interoperability between MySQL code and sqlite :
unless($dbh = DBI->connect(&#8221;DBI:SQLite:dbname=$db_login{file}&#8221;, &#8220;&#8221;, &#8220;&#8221;) ) { die &#8220;Cannot connect to database &#8211; version : &#8220;.$dbh->{sqlite_version};}$dbh->func( &#8216;UNIX_TIMESTAMP&#8217;, 1, sub { return POSIX::mktime(POSIX::strptime($_[0], &#8216;%Y-%m-%d %H:%M:%S&#8217;)); }, &#8216;create_function&#8217; );$dbh->func( &#8216;FROM_UNIXTIME&#8217;, 1,  sub { return POSIX::strftime(&#8217;%Y-%m-%d %H:%M:%S&#8217;, localtime($_[0])); }, &#8216;create_function&#8217; );
to make [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/some-mysql-compatibility-functions-for-sqlite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin Fedora layout fix</title>
		<link>http://platformedia.com/oss-blog/phpmyadmin-fedora-layout-fix/</link>
		<comments>http://platformedia.com/oss-blog/phpmyadmin-fedora-layout-fix/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 14:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2007/06/phpmyadmin-fedora-layout-fix/</guid>
		<description><![CDATA[Because Fedora expects Apache to be running as
root:apache
, the default session information directory for php has the wrong permissions if it&#8217;s running as (say)
someone:nobody
.  This disturbs the layout of the phpMyAdmin.  
The fix :
# chown :nobody /var/lib/php/session/
]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/phpmyadmin-fedora-layout-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

