<?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>Tutorius &#187; MySQL</title>
	<atom:link href="http://www.tutorius.com/category/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutorius.com</link>
	<description>Tutorials &#38; Articles &#38; such as that</description>
	<lastBuildDate>Tue, 29 Jun 2010 13:06:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Loading configuration data from a MySQL into PHP constants</title>
		<link>http://www.tutorius.com/loading-configuration-data-from-mysql-into-php-constants</link>
		<comments>http://www.tutorius.com/loading-configuration-data-from-mysql-into-php-constants#comments</comments>
		<pubDate>Wed, 12 May 2010 19:12:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tutorius.com/?p=838</guid>
		<description><![CDATA[The following code will take the contents of the first row of a configuration table and create a constant for each attribute stored in it. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // ----------------------------- LOAD CONFIGURATION DATA FROM DATABASE ----------------------------- // Each data element in first row [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/loading-configuration-data-from-mysql-into-php-constants/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot edit table data in MySQL Query Browser</title>
		<link>http://www.tutorius.com/cannot-edit-table-data-in-mysql-query-browser</link>
		<comments>http://www.tutorius.com/cannot-edit-table-data-in-mysql-query-browser#comments</comments>
		<pubDate>Fri, 26 Mar 2010 22:16:59 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=750</guid>
		<description><![CDATA[If a table cannot be edited in MySQL, check to ensure that it has a primary key. This can arise if a table is copied from another table &#8211; the copy will not have a primary key. Adding a primary key will resolve the problem.]]></description>
		<wfw:commentRss>http://www.tutorius.com/cannot-edit-table-data-in-mysql-query-browser/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a dynamic SELECT list with PHP and MySQL</title>
		<link>http://www.tutorius.com/building-a-dynamic-select-list-with-php-and-mysql</link>
		<comments>http://www.tutorius.com/building-a-dynamic-select-list-with-php-and-mysql#comments</comments>
		<pubDate>Wed, 24 Mar 2010 03:13:42 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=718</guid>
		<description><![CDATA[A common scenario in web applications is the need to create a &#60;SELECT&#62; list using a set of values extracted from a lookup table in a database. This article will explore a simple example of how to do that. For this example, imagine that in our database we have a lookup table, lu_status, that holds [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/building-a-dynamic-select-list-with-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and Dirty: List records in a table using PHP and MySQL</title>
		<link>http://www.tutorius.com/quick-and-dirty-list-records-in-a-table-using-php-and-mysql</link>
		<comments>http://www.tutorius.com/quick-and-dirty-list-records-in-a-table-using-php-and-mysql#comments</comments>
		<pubDate>Fri, 23 Oct 2009 15:40:40 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=497</guid>
		<description><![CDATA[This code lists reads a dataset from the database and lists all attributes in a table.  This code sample is deliberately quite basic, though CSS is used (through the $bgcolour variable) to create alternating background colours for the rows. The code assumes you have already connected to a database. 1 2 3 4 5 6 [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/quick-and-dirty-list-records-in-a-table-using-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting Field Names in MySQL</title>
		<link>http://www.tutorius.com/selecting-field-names-in-mysql</link>
		<comments>http://www.tutorius.com/selecting-field-names-in-mysql#comments</comments>
		<pubDate>Tue, 06 Oct 2009 20:34:02 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=453</guid>
		<description><![CDATA[Selecting field names in MySQL is pretty easy, though it's not quite like the SELECT syntax we're all used to: SHOW COLUMNS FROM TABLE; To select all fields that start with 'customer' we extend that a little bit, note the wild card to select all fields that start with 'customer'. SHOW COLUMNS FROM TABLE LIKE [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/selecting-field-names-in-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent SQL Injection attacks in PHP and MySQL</title>
		<link>http://www.tutorius.com/prevent-sql-injection-attacks-in-php-and-mysql</link>
		<comments>http://www.tutorius.com/prevent-sql-injection-attacks-in-php-and-mysql#comments</comments>
		<pubDate>Mon, 17 Aug 2009 13:46:49 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=386</guid>
		<description><![CDATA[Place this code in your database connect include, just before the database connection is made. This ensures that SQL injection attempts are handled before the database is opened. By doing it up front like this, the input is already escaped and we don't have to deal with it in our other scripts as we use input [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/prevent-sql-injection-attacks-in-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting a MySQL Password</title>
		<link>http://www.tutorius.com/resetting-a-mysql-password</link>
		<comments>http://www.tutorius.com/resetting-a-mysql-password#comments</comments>
		<pubDate>Thu, 06 Aug 2009 03:13:40 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=352</guid>
		<description><![CDATA[Resetting a MySQL root password (or other password, for that matter) is easy enough if you have admin access to the server. First go to the command line (Start &#62; Run &#62; "cmd") and type "mysqladmin" &#8211; and see a bunch of output text, you're good to go. otherwise you'le need to locate mysqladmin.exe and [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/resetting-a-mysql-password/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a UNIQUE constraint to a database column</title>
		<link>http://www.tutorius.com/making-a-database-column-unique</link>
		<comments>http://www.tutorius.com/making-a-database-column-unique#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:46:12 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=292</guid>
		<description><![CDATA[Sometimes we may need to make a column unique in a database table.  For instance we can't have two employees with the same employees with the same employee number or pension plan id. To prevent this, run a query like the following to place a constraint on the attribute or attributes; ALTER TABLE Employee ADD [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/making-a-database-column-unique/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pulling database values in multiple formats</title>
		<link>http://www.tutorius.com/pulling-database-values-in-multiple-formats</link>
		<comments>http://www.tutorius.com/pulling-database-values-in-multiple-formats#comments</comments>
		<pubDate>Fri, 31 Jul 2009 14:24:57 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=285</guid>
		<description><![CDATA[When we pull a value from MySQL or another database, there's nothing stopping us from pulling the same value in different ways within the same query. For instance, say we want to pull dates in their raw format, which is suitable for sorting but may not be the most useful formatting for display.  We might find a format [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/pulling-database-values-in-multiple-formats/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import CSV file to MySQL Database using PHP</title>
		<link>http://www.tutorius.com/import-csv-file-to-mysql-database-using-php</link>
		<comments>http://www.tutorius.com/import-csv-file-to-mysql-database-using-php#comments</comments>
		<pubDate>Tue, 28 Jul 2009 13:20:25 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=262</guid>
		<description><![CDATA[&#60;!--p &#160; /** ~~~~~~~ CSV IMPORT TO DATABASE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * * This script reads in a comma delimited text file (.csv) and creates * a table in the database from it. * * The table will be emptied to start with if it is already in the database. * * Have not yet tried this [...]]]></description>
		<wfw:commentRss>http://www.tutorius.com/import-csv-file-to-mysql-database-using-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
