<?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>Vos Virtual Network &#187; web application</title>
	<atom:link href="http://vvn.net/wp/tag/web-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://vvn.net/wp</link>
	<description>Jazz Like Code and Music For Life</description>
	<lastBuildDate>Fri, 07 Jan 2011 19:46:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Review: MySQL in a Nutshell</title>
		<link>http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/</link>
		<comments>http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 11:29:04 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[Bibliography]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web application]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=1011</guid>
		<description><![CDATA[Book Review: MySQL in a Nutshell, 2nd Edition, by Russell J.T. Dyer, published by O&#8217;Reilly Media, April 2008, 545 pages, ISBN:0-596-51433-6, price: US $34.99 (Reviewed by Daniel Vos) Behind virtually every web application, there&#8217;s a database management system. Ever used &#8230; <a href="http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Book Review:</strong> <a title="MySQL in a Nutshell" href="http://oreilly.com/catalog/9780596514334/" target="_blank">MySQL in a Nutshell, 2nd Edition</a>, by Russell J.T. Dyer, published by O&#8217;Reilly Media, April 2008, 545 pages, ISBN:0-596-51433-6, price: US $34.99 (Reviewed by Daniel Vos)</p>
<div id="attachment_1013" class="wp-caption aligncenter" style="width: 345px"><a href="http://vvn.net/wp/wp-content/uploads/2008/10/mysql_nutshell_2nded.jpeg"><img class="size-full wp-image-1013" title="MySQL in a Nutshell, 2nd ed." src="http://vvn.net/wp/wp-content/uploads/2008/10/mysql_nutshell_2nded.jpeg" alt="MySQL in a Nutshell, 2nd ed." width="335" height="500" /></a><p class="wp-caption-text">MySQL in a Nutshell, 2nd ed.</p></div>
<p>Behind virtually every web application, there&#8217;s a database management system.</p>
<p>Ever used Facebook? Guess what? It runs on a (huge!) database. What about your favorite discussion forum? Are you into auto maintenance, fly fishing, or (if you&#8217;re like my wife) do you like to swap recipes, trade amusing anecdotes about your kids, or post blog articles? All database-driven.</p>
<p>Many of the most popular, thriving websites are database driven. Behind the scenes many Web 2.0 websites are running <a href="http://www.mysql.com/">MySQL</a>, <a href="http://www.sun.com/">Sun Microsystem</a>&#8216;s open source database. (There are other popular databases from Microsoft, Oracle, and IBM &#8212; but that&#8217;s another story.)</p>
<p>MySQL is the M in LAMP &#8212; the very popular Open Source web site platform/framework (Linux, Apache, MySQL, Perl, PHP, Python). MySQL is the database used with WordPress (the software that runs this VVN blog). MySQL is the default database server used with Ruby on Rails.</p>
<p>If MySQL is the world&#8217;s most popular open-source database, then <em>MySQL in a Nutshell (2nd ed.)</em> by <a href="http://russell.dyerhouse.com/cgi-bin/index.cgi">Russell J. T. Dyer</a> is the Encyclopedia Britannica of MySQL. Weighing in at 545 pages, the book is divided into five parts:</p>
<ol>
<li><strong>Tutorial</strong> &#8211; A brief tutorial on installing MySQL and performing basic database management tasks (35 pages).</li>
<li><strong>Statement and Function Reference</strong> &#8211; A comprehensive reference to <a href="http://www.w3schools.com/sql/default.asp">SQL</a> statements, clauses, and functions implemented by MySQL. (SQL is the standard language implemented by all major database management systems, but MySQL, Oracle, MS SQLServer, and the rest all have their own quirks.) This section weighs in at nearly 300 pages, and covers database user administration, data manipulation, and database replication, and more. String function, date and time functions, mathematical functions, and flow control functions are described here, too.</li>
<li><strong>Client and Server Administration</strong> &#8211; A guide to MySQL server and client configuration and administration (90 pages). This is where you will learn the difference between <em>mysqld</em> (the database server) and <em>mysql</em> (the command-line client), and the configuration options of each. A reference to command-line utilities such as <em>mysqladmin, mysqlcheck</em> and <em>mysqldump </em>is also included.</li>
<li><strong>Programming APIs</strong> &#8211; A 100-page guide to three popular programming language APIs &#8211; <a href="http://en.wikipedia.org/wiki/C_programming_language">C</a>, <a href="http://www.perl.org/">Perl</a>, and <a href="http://www.php.net/">PHP</a> &#8211; which websites or programs use to interface with MySQL.</li>
<li><strong>Quick Reference</strong> &#8211; A 15-page set of appendices with a quick reference to the data types, operators (arithmetic, relational, and logical), and environment variables used by MySQL.</li>
</ol>
<p>If you are an absolute beginner to MySQL and database management systems, this book might not be the best first choice for you. A good place to start instead might be <a href="http://www.netbeans.org/kb/docs/php/wish-list-tutorial-main-page.html">here</a>. But if you know that MySQL is in your software development or web site development future, <em>MySQL in a Nutshell</em> deserves a place on your bookshelf.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

