<?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>prosoxi.com &#187; MySQL</title>
	<atom:link href="http://www.prosoxi.com/category/programming/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prosoxi.com</link>
	<description>Proven Solutions</description>
	<lastBuildDate>Tue, 07 Feb 2012 12:54:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>MySQL group by day, month or year using a timestamp column</title>
		<link>http://www.prosoxi.com/2012/01/08/mysql-group-by-day-month-or-year-using-a-timestamp-column/</link>
		<comments>http://www.prosoxi.com/2012/01/08/mysql-group-by-day-month-or-year-using-a-timestamp-column/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 12:38:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[group by]]></category>
		<category><![CDATA[order by]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=3384</guid>
		<description><![CDATA[&#160; In Ruby on Rails, created_at and updated_at columns are MySQL timestamp columns.&#160; GROUP BY is pretty useless on a timestamp column, unless you are trying to group rows that were added at the same second.&#160; I needed to group by just the date, so in order to do this I had to manipulate the [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2012/01/08/mysql-group-by-day-month-or-year-using-a-timestamp-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql Reserved Words</title>
		<link>http://www.prosoxi.com/2011/12/07/mysql-reserved-words/</link>
		<comments>http://www.prosoxi.com/2011/12/07/mysql-reserved-words/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 10:17:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Reserved]]></category>
		<category><![CDATA[Reserved Words]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/12/07/mysql-reserved-words/</guid>
		<description><![CDATA[Reserved Words Certain words such as SELECT, DELETE, or BIGINT are reserved and require special treatment for use as identifiers such as table and column names. This may also be true for the names of built-in functions. mysql&#62; CREATE TABLE interval (begin INT, end INT); ERROR 1064 (42000): You have an error in your SQL [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/12/07/mysql-reserved-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLite PHP tutorial</title>
		<link>http://www.prosoxi.com/2011/10/04/sqlite-php-tutorial/</link>
		<comments>http://www.prosoxi.com/2011/10/04/sqlite-php-tutorial/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 17:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[flat file]]></category>
		<category><![CDATA[flatfile database]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=2986</guid>
		<description><![CDATA[About this tutorial This is a PHP programming tutorial for the SQLite database. It covers the basics of SQLite programming with PHP language. There are two ways to code PHP scripts with SQLite library. We can use procedural functions or OOP objects and methods. In this tutorial, we use the classical procedural style. You might [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/10/04/sqlite-php-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sqlite error codes</title>
		<link>http://www.prosoxi.com/2011/09/29/sqlite-error-codes/</link>
		<comments>http://www.prosoxi.com/2011/09/29/sqlite-error-codes/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 12:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/29/sqlite-error-codes/</guid>
		<description><![CDATA[here are the error codes for sqlite, straight from their site: The error codes for SQLite version 3 are unchanged from version 2. They are as follows: #define SQLITE_OK&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 0&#160;&#160; /* Successful result */ #define SQLITE_ERROR&#160;&#160;&#160;&#160;&#160;&#160;&#160; 1&#160;&#160; /* SQL error or missing database */ #define SQLITE_INTERNAL&#160;&#160;&#160;&#160; 2&#160;&#160; /* An internal logic error in SQLite */ [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/29/sqlite-error-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL if exist update else insert</title>
		<link>http://www.prosoxi.com/2011/09/29/mysql-if-exist-update-else-insert/</link>
		<comments>http://www.prosoxi.com/2011/09/29/mysql-if-exist-update-else-insert/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 11:48:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/29/mysql-if-exist-update-else-insert/</guid>
		<description><![CDATA[I whant to write single sql for this: if not exists (table colum value=something) insert new row else update table colum value i know that MSSQL has this method, but how to do this in mysql? Sources http://forums.digitalpoint.com/showthread.php?t=311008 http://stackoverflow.com/questions/1361340/how-to-insert-if-not-exists-in-mysql http://bogdan.org.ua/2007/10/18/mysql-insert-if-not-exists-syntax.html use INSERT IGNORE INTO table see http://bogdan.org.ua/2007/10/18/mysql-insert-if-not-exists-syntax.html there&#8217;s also INSERT … ON DUPLICATE KEY UPDATE [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/29/mysql-if-exist-update-else-insert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Management Solutions by SQL Maestro Group</title>
		<link>http://www.prosoxi.com/2011/09/28/database-management-solutions-by-sql-maestro-group/</link>
		<comments>http://www.prosoxi.com/2011/09/28/database-management-solutions-by-sql-maestro-group/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:27:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[crud]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/28/database-management-solutions-by-sql-maestro-group/</guid>
		<description><![CDATA[SQL Maestro Group offers complete database admin, development and management tools for all the most popular DBMS providing the highest performance, scalability and reliability to meet the requirements of today&#8217;s database applications. Source http://www.sqlmaestro.com/]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/28/database-management-solutions-by-sql-maestro-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Model CRUD with PHP 5.3</title>
		<link>http://www.prosoxi.com/2011/09/28/simple-model-crud-with-php-5-3/</link>
		<comments>http://www.prosoxi.com/2011/09/28/simple-model-crud-with-php-5-3/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:26:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[crud]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/28/simple-model-crud-with-php-5-3/</guid>
		<description><![CDATA[I’ve been wanting to mess around with some of the new features in PHP 5.3, so I took the opportunity to write a base model class that can be used for simple db based models. This isn’t really production type code, more of an example of “look what php can do now”, although with some [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/28/simple-model-crud-with-php-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grocery CRUD</title>
		<link>http://www.prosoxi.com/2011/09/28/grocery-crud/</link>
		<comments>http://www.prosoxi.com/2011/09/28/grocery-crud/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:25:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[crud]]></category>
		<category><![CDATA[datagrid]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/28/grocery-crud/</guid>
		<description><![CDATA[grocery CRUD is a library that makes a developer&#8217;s life easier. Just few lines of code and you can create a full stable CRUD with nice views. A totally automatic system that even a newbie in PHP can work with. Full your bags (not bugs!) with the operations that you need and that&#8217;s it. To [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/28/grocery-crud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpgrid</title>
		<link>http://www.prosoxi.com/2011/09/28/phpgrid-2/</link>
		<comments>http://www.prosoxi.com/2011/09/28/phpgrid-2/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:23:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[crud]]></category>
		<category><![CDATA[data grid]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/28/phpgrid-2/</guid>
		<description><![CDATA[Instant Datagrid Solution. The phpGrid is a simple, powerful and fully customizable PHP control for generating data-bound AJAX PHP datagrid. Create a fully functional datagrid in PHP for as little as five TWO lines of code. Grid-based editing, create, read, update and delete (CRUD), are the most common operations for web developers. With phpGrid web-based [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/28/phpgrid-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ezNcrypt</title>
		<link>http://www.prosoxi.com/2011/09/15/ezncrypt/</link>
		<comments>http://www.prosoxi.com/2011/09/15/ezncrypt/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 15:30:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[encrypt]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/09/15/ezncrypt/</guid>
		<description><![CDATA[Encrypt, Decrypt &#38; Access Your Data in Real Time with ezNcrypt Flex! Implied by its name, ezNcrypt Flex is a flexible platform-as-a-service (PaaS) used to protect, encrypt and provide key management for any application running on Linux. You have the power to create simple, customer rules that: Map applications and executables to transparently encrypted files [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/09/15/ezncrypt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql query against wildcard</title>
		<link>http://www.prosoxi.com/2011/06/02/mysql-query-against-wildcard/</link>
		<comments>http://www.prosoxi.com/2011/06/02/mysql-query-against-wildcard/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 14:49:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phrase]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/06/02/mysql-query-against-wildcard/</guid>
		<description><![CDATA[http://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html http://stackoverflow.com/questions/2315301/mysql-query-against-wildcard &#34;SELECT * FROM &#34; . $table . &#34; WHERE MATCH (message) AGAINST ('&#34; . $string . &#34;%' IN BOOLEAN MODE)&#34;]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/06/02/mysql-query-against-wildcard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Mysql Search Strategies</title>
		<link>http://www.prosoxi.com/2011/06/02/php-mysql-dictionary-search-strategies/</link>
		<comments>http://www.prosoxi.com/2011/06/02/php-mysql-dictionary-search-strategies/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 14:32:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/06/02/php-mysql-dictionary-search-strategies/</guid>
		<description><![CDATA[Databases Below is a short list of available databases and a brief description. These are the most commonly used databases. If searching for translations to a specific word or phrase, please select the appropriate database as not all databases are searched by default. ! &#8211; Search all database until a match is found (1) * [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/06/02/php-mysql-dictionary-search-strategies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL: Get Next Auto_increment</title>
		<link>http://www.prosoxi.com/2011/05/25/mysql-get-next-auto_increment/</link>
		<comments>http://www.prosoxi.com/2011/05/25/mysql-get-next-auto_increment/#comments</comments>
		<pubDate>Wed, 25 May 2011 09:13:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/05/25/mysql-get-next-auto_increment/</guid>
		<description><![CDATA[http://blog.jamiedoris.com/geek/560/ &#60;?$tablename = &#34;tablename&#34;;$next_increment = 0;$qShowStatus = &#34;SHOW TABLE STATUS LIKE '$tablename'&#34;;$qShowStatusResult = mysql_query($qShowStatus) or die ( &#34;Query failed: &#34; . mysql_error() . &#34;&#60;br/&#62;&#34; . $qShowStatus ); $row = mysql_fetch_assoc($qShowStatusResult);$next_increment = $row['Auto_increment']; echo &#34;next increment number: [$next_increment]&#34;;?&#62;]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/05/25/mysql-get-next-auto_increment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Multi-word MySQL Search</title>
		<link>http://www.prosoxi.com/2011/04/21/php-multi-word-mysql-search/</link>
		<comments>http://www.prosoxi.com/2011/04/21/php-multi-word-mysql-search/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 11:28:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/04/21/php-multi-word-mysql-search/</guid>
		<description><![CDATA[Here we have a simple PHP search algorithm that queries a MySQL database and outputs the result. It is a simple alternative to using the FULLTEXT search feature of MySQL. The script autmatically takes into consideration how many search words are in the search string which is submitted from the HTML search form. It then [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/04/21/php-multi-word-mysql-search/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>mysql sum if</title>
		<link>http://www.prosoxi.com/2011/04/14/mysql-sum-if/</link>
		<comments>http://www.prosoxi.com/2011/04/14/mysql-sum-if/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 07:12:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[sum]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/04/14/mysql-sum-if/</guid>
		<description><![CDATA[In today’s quick tip screencast, we’re going to learn a MySQL query trick. You might be already familiar with the SUM() and IF() functions. We will be combining them to come up with some useful queries. This can reduce the number of queries you need to run for fetching certain types of summary data, and [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/04/14/mysql-sum-if/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Date Format</title>
		<link>http://www.prosoxi.com/2011/04/07/mysql-date-format/</link>
		<comments>http://www.prosoxi.com/2011/04/07/mysql-date-format/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 11:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/04/07/mysql-date-format/</guid>
		<description><![CDATA[DATE_FORMAT(date,format) Formats the date value according to the format string. &#160; &#160; The following specifiers may be used in the format string. The “%” character is required before format specifier characters. Specifier Description %a Abbreviated weekday name (Sun..Sat) %b Abbreviated month name (Jan..Dec) %c Month, numeric (0..12) %D Day of the month with English suffix [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/04/07/mysql-date-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP&#8217;s sprintf() on a MySQL query utilizing DATE_FORMAT()</title>
		<link>http://www.prosoxi.com/2011/04/07/phps-sprintf-on-a-mysql-query-utilizing-date_format/</link>
		<comments>http://www.prosoxi.com/2011/04/07/phps-sprintf-on-a-mysql-query-utilizing-date_format/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 11:40:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/2011/04/07/phps-sprintf-on-a-mysql-query-utilizing-date_format/</guid>
		<description><![CDATA[So what’s the solution? You have to “comment-out” the % that aren’t part of your sprintf() substitution. You can do this by putting another % in front of the ‘%’ symbols in the DATE_FORMAT() function. This deems them as a literal percent-sign instead of the start of another sprintf() “variable”. &#160; &#60;?php // build our [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/04/07/phps-sprintf-on-a-mysql-query-utilizing-date_format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real-World OOP With PHP and MySQL</title>
		<link>http://www.prosoxi.com/2011/03/24/real-world-oop-with-php-and-mysql/</link>
		<comments>http://www.prosoxi.com/2011/03/24/real-world-oop-with-php-and-mysql/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 21:43:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=2212</guid>
		<description><![CDATA[Numerous examples from robots to bicycles have been offered as “easy” explanations of what OOP is. I’ve opted to show you how OOP works with a real-life example, for a programmer. By creating a MySQL CRUD class you can easily create, read, update and delete entries in any of your projects, regardless of how the [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/03/24/real-world-oop-with-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Access With PDO CRUD</title>
		<link>http://www.prosoxi.com/2011/03/24/easy-access-with-pdo-crud/</link>
		<comments>http://www.prosoxi.com/2011/03/24/easy-access-with-pdo-crud/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 21:42:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=2209</guid>
		<description><![CDATA[Abstract MySQL SQLite Summary Abstract The term CRUD refers to the four basic functionalities used in most PHP applications. Create Retreive Update Delete These tasks can often be repetitive and time consuming and each database has its own bunch of functions to handle how these tasks are performed. This tutorial shows how to use the [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/03/24/easy-access-with-pdo-crud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Scheduler</title>
		<link>http://www.prosoxi.com/2011/02/17/mysql-scheduler/</link>
		<comments>http://www.prosoxi.com/2011/02/17/mysql-scheduler/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 19:55:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=2029</guid>
		<description><![CDATA[From the release of MySQL 5.1.6 comes the inclusion of a scheduler. The scheduler, as the name suggests, schedules tasks within the database in the same way as triggers. In fact, the scheduler is just that, a temporal trigger. Many of the tasks assigned to the scheduler have been run from cron, but not everybody [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/02/17/mysql-scheduler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to PHP PDO</title>
		<link>http://www.prosoxi.com/2011/02/14/introduction-to-php-pdo/</link>
		<comments>http://www.prosoxi.com/2011/02/14/introduction-to-php-pdo/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 10:16:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[insert]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1979</guid>
		<description><![CDATA[Introduction to PHP PDO (PHP Data Objects) by Kevin Waterson Contents What is PDO What Databases does PDO support Where do I begin? Connect to a Database Connect to PgSQL Connect to SQLite Connect to MySQL Connect to Firebird Connect to Informix Connect to Oracle Connect to ODBC Connect to DBLIB Connect to IBM There [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/02/14/introduction-to-php-pdo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>NoSQL databases</title>
		<link>http://www.prosoxi.com/2011/02/11/nosql-databases/</link>
		<comments>http://www.prosoxi.com/2011/02/11/nosql-databases/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 17:25:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[cassandra]]></category>
		<category><![CDATA[nosql]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1946</guid>
		<description><![CDATA[NoSQL DEFINITION: Next Generation Databases mostly addressing some of the points: being non-relational, distributed, open-source and horizontal scalable. The original intention has been modern web-scale databases. The movement began early 2009 and is growing rapidly. Often more characteristics apply as: schema-free, easy replication support, simple API, eventually consistent / BASE (not ACID), a huge data [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/02/11/nosql-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Mysql Search Sctipt</title>
		<link>http://www.prosoxi.com/2011/02/01/php-mysql-search-sctipt/</link>
		<comments>http://www.prosoxi.com/2011/02/01/php-mysql-search-sctipt/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 08:59:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[fulltext]]></category>
		<category><![CDATA[mysql. like]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1928</guid>
		<description><![CDATA[&#60;?php $hostname_logon = &#8220;localhost&#8221; ; $database_logon = &#8220;&#8221; ; $username_logon = &#8220;&#8221; ; $password_logon = &#8220;&#8221; ; $connections = mysql_connect($hostname_logon, $username_logon, $password_logon) or die ( &#8220;Unabale to connect to the database&#8221; ); mysql_select_db($database_logon) or die ( &#8220;Unable to select database!&#8221; ); $limit = 5; $var = @$_GET['q'] ; $trimmed = trim($var); $trimmed_array = explode(&#8221; &#8220;,$trimmed); [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/02/01/php-mysql-search-sctipt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieving Records from Multiple Tables</title>
		<link>http://www.prosoxi.com/2011/01/11/retrieving-records-from-multiple-tables/</link>
		<comments>http://www.prosoxi.com/2011/01/11/retrieving-records-from-multiple-tables/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 13:26:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[2 querys]]></category>
		<category><![CDATA[2 table]]></category>
		<category><![CDATA[two select]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1887</guid>
		<description><![CDATA[It does no good to put records in a database unless you retrieve them eventually and do something with them. That&#8217;s the purpose of the SELECT statement—to help you get at your data. SELECT probably is used more often than any other in the SQL language, but it can also be the trickiest; the constraints [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2011/01/11/retrieving-records-from-multiple-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concatenate and NULL/Blank fields</title>
		<link>http://www.prosoxi.com/2010/12/18/concatenate-and-nullblank-fields/</link>
		<comments>http://www.prosoxi.com/2010/12/18/concatenate-and-nullblank-fields/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 15:14:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[coalesce]]></category>
		<category><![CDATA[concat]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1799</guid>
		<description><![CDATA[CONCAT() and RTRIM() both return NULL if any of their arguments are NULL. So CONCAT(&#8216;xyz&#8217;, NULL) returns NULL. RTRIM(NULL) returns NULL. CONCAT(&#8216;xyz&#8217;, NULL, &#8217;123&#8242;) returns NULL. coalesce(FIELD, &#8216;&#8212;&#8217;) You might want to use either IFNULL() or COALESCE() to turn the NULLs into empty strings. See http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html and http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html for docs on these functions. CONCAT() and [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/12/18/concatenate-and-nullblank-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql insert string</title>
		<link>http://www.prosoxi.com/2010/11/22/mysql-insert-string/</link>
		<comments>http://www.prosoxi.com/2010/11/22/mysql-insert-string/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 20:34:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1684</guid>
		<description><![CDATA[For starters, you should just use mysql_real_escape_string when inserting into the database &#8211; this will ensure that whatever you store is safely encoded, yet retains all of the original information. In terms of output, the key difference between htmlentities and htmlspecialchars is that htmlentities will convert all characters that have entities whereas htmlspecialchars will only convert &#60;, &#62;, [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/11/22/mysql-insert-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.prosoxi.com/2010/11/22/1681/</link>
		<comments>http://www.prosoxi.com/2010/11/22/1681/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 19:06:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1681</guid>
		<description><![CDATA[Execute a database backup query from PHP file[ad code=4 align=center] Below is an example of using SELECT INTO OUTFILE query for creating table backup : include &#8216;config.php&#8217;; include &#8216;opendb.php&#8217;; $tableName = &#8216;mypet&#8217;; $backupFile = &#8216;backup/mypet.sql&#8217;; $query = &#8220;SELECT * INTO OUTFILE &#8216;$backupFile&#8217; FROM $tableName&#8221;; $result = mysql_query($query); include &#8216;closedb.php&#8217;; To restore the backup you just [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/11/22/1681/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php mysql backup</title>
		<link>http://www.prosoxi.com/2010/11/22/php-mysql-backup/</link>
		<comments>http://www.prosoxi.com/2010/11/22/php-mysql-backup/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 19:01:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[backup]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1678</guid>
		<description><![CDATA[Welcome to phpMyBackupPro Here on the offcial homepage you will find all informations about phpMyBackupPro (pMBP). phpMyBackup Pro is a very easy to use, free, web-based MySQL backup application, licensed under the GNU GPL. You can create scheduled backups, manage and restore them, download or email them and a lot more![ad code=4] Major features: - [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/11/22/php-mysql-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql utf-8 characters</title>
		<link>http://www.prosoxi.com/2010/11/12/mysql-utf-8-characters/</link>
		<comments>http://www.prosoxi.com/2010/11/12/mysql-utf-8-characters/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 09:36:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1625</guid>
		<description><![CDATA[mysql_query(&#8220;SET CHARACTER SET utf8&#8243;); mysql_query(&#8220;SET NAMES &#8216;utf8&#8242;&#8221;); mysql_query(&#8220;SET COLLATION_CONNECTION=utf8_general_ci&#8221;); mysql_query(&#8220;SET CHARACTER_SET_CLIENT=utf8&#8243;); mysql_query(&#8220;SET CHARACTER_SET_RESULTS=utf8&#8243;); [ad code=1]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/11/12/mysql-utf-8-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storing Hierarchical Data in a Database</title>
		<link>http://www.prosoxi.com/2010/11/09/storing-hierarchical-data-in-a-database/</link>
		<comments>http://www.prosoxi.com/2010/11/09/storing-hierarchical-data-in-a-database/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 10:37:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[catid]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[parent]]></category>
		<category><![CDATA[parent id]]></category>
		<category><![CDATA[tree]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1592</guid>
		<description><![CDATA[Whether you want to build your own forum, publish the messages from a mailing list on your Website, or write your own cms: there will be a moment that you&#8217;ll want to store hierarchical data in a database. And, unless you&#8217;re using a XML-like database, tables aren&#8217;t hierarchical; they&#8217;re just a flat list. You&#8217;ll have [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/11/09/storing-hierarchical-data-in-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Concat + Join fields</title>
		<link>http://www.prosoxi.com/2010/11/07/mysql-concat-join-fields/</link>
		<comments>http://www.prosoxi.com/2010/11/07/mysql-concat-join-fields/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 16:24:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[concat]]></category>
		<category><![CDATA[join fileds]]></category>

		<guid isPermaLink="false">http://www.prosoxi.com/?p=1571</guid>
		<description><![CDATA[SELECT CONCAT(last_name,', ',first_name) full_name FROM mytable ORDER BY full_name; [ad code=1]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/11/07/mysql-concat-join-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dates in PHP and Mysql</title>
		<link>http://www.prosoxi.com/2010/09/09/dates-in-php-and-mysql/</link>
		<comments>http://www.prosoxi.com/2010/09/09/dates-in-php-and-mysql/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 07:13:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=1279</guid>
		<description><![CDATA[$mysqldate = date( 'Y-m-d H:i:s', $phpdate ); $phpdate = strtotime( $mysqldate );]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/09/09/dates-in-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Tips and Functions</title>
		<link>http://www.prosoxi.com/2010/09/08/mysql-tips-and-functions/</link>
		<comments>http://www.prosoxi.com/2010/09/08/mysql-tips-and-functions/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 08:34:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=1277</guid>
		<description><![CDATA[MySQL Tips and Functions • Comparison operators = Equals &#60; Less than &#60;= Less than or equal to &#62; Greater than &#62;= Greater than or equal to &#60;&#62; Not equal to != Not equal to LIKE Compare strings • Mathematical operators ( ) Use parentheses to force precedence + add - subtract * multiply / [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/09/08/mysql-tips-and-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL errors into PHP?</title>
		<link>http://www.prosoxi.com/2010/04/19/mysql-errors-into-php/</link>
		<comments>http://www.prosoxi.com/2010/04/19/mysql-errors-into-php/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 16:34:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=1046</guid>
		<description><![CDATA[Here are some examples of how to utilize mysql_error () mysql_connect("your.hostaddress.com", "username", "password") or die(mysql_error()) This will return an error if there is a problem connecting to your MySQL database $value = mysql_query($your_query)  or die("A MySQL error has occurred.&#60;br /&#62;Your Query: " .  $your_query . "&#60;br /&#62; Error: (" . mysql_errno() . ") " . [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/04/19/mysql-errors-into-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quotes in mysql queries &#8211; security issue</title>
		<link>http://www.prosoxi.com/2010/03/10/quotes-in-mysql-queries-security-issue/</link>
		<comments>http://www.prosoxi.com/2010/03/10/quotes-in-mysql-queries-security-issue/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:50:14 +0000</pubDate>
		<dc:creator>kostas</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=1007</guid>
		<description><![CDATA[Remember to check numeric data as well. If an application generates a query such as SELECT * FROM table WHERE ID=234 when a user enters the value 234,the user can enter the value 234 OR 1=1 to cause the application to generate the query SELECT * FROM table WHERE ID=234 OR 1=1.As a result, the [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/03/10/quotes-in-mysql-queries-security-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql auto Datetime timestamp</title>
		<link>http://www.prosoxi.com/2010/03/05/mysql-auto-datetime-timestamp/</link>
		<comments>http://www.prosoxi.com/2010/03/05/mysql-auto-datetime-timestamp/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 09:10:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=1000</guid>
		<description><![CDATA[On default valeu of timestamp add this  CURRENT_TIMESTAMP]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/03/05/mysql-auto-datetime-timestamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Select within Select  (sel into sel)</title>
		<link>http://www.prosoxi.com/2010/01/14/mysql-select-within-select-sel-into-sel/</link>
		<comments>http://www.prosoxi.com/2010/01/14/mysql-select-within-select-sel-into-sel/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 08:21:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=942</guid>
		<description><![CDATA[SELECT clients.id, (SELECT Count(clients_job.id) FROM clients_job WHERE clients_job.client_id =  clients.id   ) AS JobCounter FROM clients ORDER BY EPONIMIA ASC]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/01/14/mysql-select-within-select-sel-into-sel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP mysqli::set_charset</title>
		<link>http://www.prosoxi.com/2010/01/12/php-mysqliset_charset/</link>
		<comments>http://www.prosoxi.com/2010/01/12/php-mysqliset_charset/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 11:05:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=933</guid>
		<description><![CDATA[In connection file add the following lines $mysqli = new mysqli($hostname_###,$username_###,$password_###,$database_###); $mysqli-&#62;query(&#8220;SET NAMES &#8216;utf8&#8242;&#8221;);]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/01/12/php-mysqliset_charset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysqli Tutorial</title>
		<link>http://www.prosoxi.com/2010/01/08/mysqli-tutorial/</link>
		<comments>http://www.prosoxi.com/2010/01/08/mysqli-tutorial/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 09:29:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[mysqli]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/?p=921</guid>
		<description><![CDATA[Moving from a procedural system to object-oriented can be a daunting task. One feature to assist you is the MySQLi class, which allows for an object-oriented approach to database manipulation. This tutorial gives insight into the structure and basic usage of the MySQLi class. If PDO isn’t an option for you, then try MySQLi! MySQLi [...]]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2010/01/08/mysqli-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORDER BY using specific order from IN</title>
		<link>http://www.prosoxi.com/2009/10/19/order-by-using-specific-order-from-in/</link>
		<comments>http://www.prosoxi.com/2009/10/19/order-by-using-specific-order-from-in/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 15:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.prosoxi.gr/2009/10/19/order-by-using-specific-order-from-in/</guid>
		<description><![CDATA[You can use FIND_IN_SET to do that: SELECT * FROM tablename WHERE id IN (1,10,8,5) ORDER BY FIND_IN_SET(id, &#8217;1,10,8,5&#8242;)]]></description>
		<wfw:commentRss>http://www.prosoxi.com/2009/10/19/order-by-using-specific-order-from-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

