<?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>Studio404 Web Agency &#187; Database</title>
	<atom:link href="http://www.studio404.it/s/database/feed" rel="self" type="application/rss+xml" />
	<link>http://www.studio404.it</link>
	<description>appunti di una web agency</description>
	<lastBuildDate>Mon, 17 May 2010 12:41:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>10 Essential SQL Tips for Developers</title>
		<link>http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html</link>
		<comments>http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html#comments</comments>
		<pubDate>Thu, 25 Jun 2009 08:38:05 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sicurezza]]></category>
		<category><![CDATA[sviluppo]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html</guid>
		<description><![CDATA[Dieci consigli molto utili per utilizzare al meglio i database SQL.]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/10-essential-sql-tips-for-developers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL. Usare le espressioni regolari nelle query</title>
		<link>http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html</link>
		<comments>http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html#comments</comments>
		<pubDate>Sat, 09 May 2009 07:15:37 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[regexp]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html</guid>
		<description><![CDATA[Con mySQL è possibile usare le espressioni regolari per selezionare determinati campi di testo all'interno di una tabella. SELECT * FROM articoli WHERE testo REGEXP '[^a-z]Ciao[^a-z]' ; Se si vuole fare comparazione di tipo case sensitive, è necessario usare la parola BINARY: SELECT * FROM articoli WHERE testo REGEXP BINARY '[^a-zA-Z]Ciao[^a-zA-Z]' ; Attenzione: alcuni caratteri [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/mysql-usare-le-espressioni-regolari-nelle-query.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL. Cancellare record duplicati da una tabella</title>
		<link>http://www.studio404.it/2009/mysql-cancellare-record-duplicati-tabella.html</link>
		<comments>http://www.studio404.it/2009/mysql-cancellare-record-duplicati-tabella.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 13:59:29 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/mysql-cancellare-record-duplicati-da-una-tabella.html</guid>
		<description><![CDATA[Per eliminare i record duplicati di una tabella, anche quando la tabella non ha un campo indice unico, si può lanciare questa query: CREATE TABLE nuova_tabella AS SELECT * FROM vecchia_tabella WHERE 1 GROUP BY &#91;COLUMN TO remove duplicates BY&#93;; DROP TABLE vecchia_tabella; RENAME TABLE nuova_tabella TO vecchia_tabella; via: Codesnippets]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/mysql-cancellare-record-duplicati-tabella.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Aggiungere un record in un database con Ajax e PHP</title>
		<link>http://www.studio404.it/2009/aggiungere-un-record-in-un-database-con-ajax-e-php.html</link>
		<comments>http://www.studio404.it/2009/aggiungere-un-record-in-un-database-con-ajax-e-php.html#comments</comments>
		<pubDate>Mon, 02 Mar 2009 13:01:46 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Ajax, Javascript]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[sviluppo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.studio404.it/2009/aggiungere-un-record-in-un-database-con-ajax-e-php.html</guid>
		<description><![CDATA[Un interessante post che spiega come aggiungere dei record in un database usando la libreria prototype insieme a PHP.]]></description>
		<wfw:commentRss>http://www.studio404.it/2009/aggiungere-un-record-in-un-database-con-ajax-e-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL. Sostituire il nome di un campo</title>
		<link>http://www.studio404.it/2008/mysql-cambiare-nome-campo-tabella.html</link>
		<comments>http://www.studio404.it/2008/mysql-cambiare-nome-campo-tabella.html#comments</comments>
		<pubDate>Mon, 03 Nov 2008 08:32:13 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.studio404.it/?p=124</guid>
		<description><![CDATA[Per cambiare il nome di un campo di una tabella, in mySQL si può lanciare questa query sul database: UPDATE `tabella`SET field_name = REPLACE&#40;field_name,"vecchionome","nuovonome"&#41;; via CodeSnippets.]]></description>
		<wfw:commentRss>http://www.studio404.it/2008/mysql-cambiare-nome-campo-tabella.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creare del contenuto modificabile con MooTools, PHP e mySQL</title>
		<link>http://www.studio404.it/2008/contenuto-modificabile-mootools-php.html</link>
		<comments>http://www.studio404.it/2008/contenuto-modificabile-mootools-php.html#comments</comments>
		<pubDate>Thu, 26 Jun 2008 16:41:29 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Ajax, Javascript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.studio404.it/?p=96</guid>
		<description><![CDATA[In questo brevissimo post viene spiegato come creare in pochi semplici passi del contenuto modificabile grazie all'uso del framework Ajax MooTools, di PHP e MySQL.]]></description>
		<wfw:commentRss>http://www.studio404.it/2008/contenuto-modificabile-mootools-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gestire i database con ezSQL</title>
		<link>http://www.studio404.it/2006/gestire-database-con-ezsql.html</link>
		<comments>http://www.studio404.it/2006/gestire-database-con-ezsql.html#comments</comments>
		<pubDate>Tue, 30 May 2006 08:00:54 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[ezsql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studio404.it/blog/?p=43</guid>
		<description><![CDATA[ezSQL è una classe PHP che semplifica parecchio le interazioni degli script PHP con diversi tipi di database, velocizzando così il lavoro di scrittura del codice. Questa classe, leggermente modificata, viene usata anche da WordPress per gestire tutte le interazioni con il database. Sul sito dello sviluppatore c'è un'ampia documentazione, con diversi esempi. Vediamo ora [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2006/gestire-database-con-ezsql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL. Sostituzione di massa di stringhe</title>
		<link>http://www.studio404.it/2005/sostituzione-di-massa.html</link>
		<comments>http://www.studio404.it/2005/sostituzione-di-massa.html#comments</comments>
		<pubDate>Sat, 10 Dec 2005 15:33:24 +0000</pubDate>
		<dc:creator>Claudio Simeone</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.claudiosimeone.it/2005/sostituzione-di-massa.html</guid>
		<description><![CDATA[Qualche volta può capitare di dover sostituire delle stringhe (testi, cifre etc) nel nostro database mySQL. Se il database contiene centinaia di records (come spesso capita) è impensabile effettuare le sostituzioni manualmente. Possiamo però usare un semplice trucchetto, illustrato qui e che consiste in una semplice query. Ad esempio, abbiamo una tabella articoli e vogliamo [...]]]></description>
		<wfw:commentRss>http://www.studio404.it/2005/sostituzione-di-massa.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
