<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>mysql-server &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/mysql-server/</link>
	<description>Feed of posts on WordPress.com tagged "mysql-server"</description>
	<pubDate>Sat, 26 Dec 2009 22:23:46 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[ Data truncation: Incorrect datetime value in MySQL]]></title>
<link>http://sochinda.wordpress.com/2009/12/15/data-truncation-incorrect-datetime-value-in-mysql/</link>
<pubDate>Tue, 15 Dec 2009 07:23:34 +0000</pubDate>
<dc:creator>sochinda</dc:creator>
<guid>http://sochinda.wordpress.com/2009/12/15/data-truncation-incorrect-datetime-value-in-mysql/</guid>
<description><![CDATA[Message Error in MySQL: &#8220;Data truncation: Incorrect datetime value: &#8216;1969-12-31 16:00:00]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Message Error in MySQL:<br />
&#8220;Data truncation: Incorrect datetime value: &#8216;1969-12-31 16:00:00&#8242; for column &#8216;LAST_LOGIN&#8217; at row 1&#8243;</p>
<p>Resolution:</p>
<p>Now, open the my.ini file located at c:program files/MySQL/MySQL<br />
Server X.x/my.ini.<br />
Add a # at the begining of the line: <strong>sql-mode=&#8221;STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION&#8221; </strong><br />
Type</p>
<p><strong>sql_mode=&#8221; </strong>on the next line and save the file.<br />
restart mysql</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I had a database around here somewhere]]></title>
<link>http://dustbury.wordpress.com/2009/11/17/i-had-a-database-around-here-somewhere/</link>
<pubDate>Tue, 17 Nov 2009 19:00:40 +0000</pubDate>
<dc:creator>CGHill</dc:creator>
<guid>http://dustbury.wordpress.com/2009/11/17/i-had-a-database-around-here-somewhere/</guid>
<description><![CDATA[DH says a saturated link may be causing some slowdowns on the way into MySQL boxes. I had no trouble]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>DH says <a href="http://www.dreamhoststatus.com/2009/11/17/networking-issues-with-mysql-servers/">a saturated link may be causing some slowdowns</a> on the way into MySQL boxes.  I had no trouble pinging mine, but getting non-cached pages may be tricky until they figure out what&#8217;s happening to their hardware.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Select data that is not match data in another table in MySQL]]></title>
<link>http://sochinda.wordpress.com/2009/10/13/select-data-that-is-not-match-data-in-another-table-in-mysql/</link>
<pubDate>Tue, 13 Oct 2009 04:18:28 +0000</pubDate>
<dc:creator>sochinda</dc:creator>
<guid>http://sochinda.wordpress.com/2009/10/13/select-data-that-is-not-match-data-in-another-table-in-mysql/</guid>
<description><![CDATA[We have mock up data in both table as below: Table1 ID Name 1 Mr. A 2 Ms. B 3 Mrs. C &#8212;&#8212;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We have mock up data in both table as below:</p>
<table style="height:104px;" border="1" width="200">
<tbody>
<tr>
<td colspan="2">Table1</td>
</tr>
<tr>
<td style="text-align:center;">ID</td>
<td style="text-align:center;">Name</td>
</tr>
<tr>
<td style="text-align:center;">1</td>
<td>Mr. A</td>
</tr>
<tr>
<td style="text-align:center;">2</td>
<td>Ms. B</td>
</tr>
<tr>
<td style="text-align:center;">3</td>
<td>Mrs. C</td>
</tr>
</tbody>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<table style="height:84px;" border="1" width="260">
<tbody>
<tr>
<td colspan="3">Table2</td>
</tr>
<tr style="text-align:center;">
<td style="text-align:center;">ID</td>
<td>Table1ID</td>
<td>Name</td>
</tr>
<tr>
<td style="text-align:center;">1</td>
<td style="text-align:center;">3</td>
<td>ABC Beer</td>
</tr>
<tr style="text-align:center;">
<td style="text-align:center;">2</td>
<td>1</td>
<td style="text-align:left;">Tiger Beer</td>
</tr>
</tbody>
</table>
<p>And we want to select data in table1 that is not avaiable in table2, so when you want to do as I said.</p>
<p>You should use:</p>
<pre class="brush: java;">

SELECT table1.*

FORM table1 LEFT JOIN table2 ON table1.ID = table2.Table1ID

WHERE table2.Table1ID is null
</pre>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Result:</p>
<table style="height:71px;" border="1" width="200">
<tbody>
<tr>
<td colspan="2">Result</td>
</tr>
<tr>
<td style="text-align:center;">ID</td>
<td style="text-align:center;">Name</td>
</tr>
<tr>
<td style="text-align:center;">2</td>
<td>Ms. B</td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MySQL question &amp; answer]]></title>
<link>http://dipeshpatel.wordpress.com/2009/10/02/mysql-question-answer/</link>
<pubDate>Fri, 02 Oct 2009 12:10:10 +0000</pubDate>
<dc:creator>Dipesh Patel</dc:creator>
<guid>http://dipeshpatel.wordpress.com/2009/10/02/mysql-question-answer/</guid>
<description><![CDATA[Explain the difference between mysql and mysqli interfaces in PHP? – mysqli is the object-oriented v]]></description>
<content:encoded><![CDATA[Explain the difference between mysql and mysqli interfaces in PHP? – mysqli is the object-oriented v]]></content:encoded>
</item>
<item>
<title><![CDATA[Tutorial using MySQL with Asp.Net ]]></title>
<link>http://pankajlalwani.wordpress.com/2009/09/10/tutorial-using-mysql-with-asp-net/</link>
<pubDate>Thu, 10 Sep 2009 13:32:27 +0000</pubDate>
<dc:creator>pankajlalwani</dc:creator>
<guid>http://pankajlalwani.wordpress.com/2009/09/10/tutorial-using-mysql-with-asp-net/</guid>
<description><![CDATA[If you want to use MySQL Database with Asp.net, then here is a link which explains: http://www.15sec]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you want to use MySQL Database with Asp.net, then here is a link which explains:</p>
<p><a href="http://www.15seconds.com/issue/050407.htm" target="_blank">http://www.15seconds.com/issue/050407.htm</a></p>
<ul>
<li><strong>Download of MySQL Server</strong></li>
<li><strong>MySQL Administrator</strong></li>
<li><strong>MySQL Query Browser</strong></li>
<li><strong>.Net Connector (For Asp.net Integration)</strong></li>
</ul>
<p>The above link has explained in detail, with proper screenshots, from where to download installers, how to install with step by step screens and explanations, and also how to create sample asp.net application with MySQL database, create MySQL database (schema), create MySQL Table, Insert Data, and populate that data in asp.net gridview.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Akses Remote MySQL Server]]></title>
<link>http://ided.wordpress.com/2009/05/28/akses-remote-mysql-server/</link>
<pubDate>Thu, 28 May 2009 03:00:41 +0000</pubDate>
<dc:creator>ided</dc:creator>
<guid>http://ided.wordpress.com/2009/05/28/akses-remote-mysql-server/</guid>
<description><![CDATA[Kemaren ada mahasiswa yang nanya, gimana caranya akses remote server MySQL. Misalnya Remote server M]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Kemaren ada mahasiswa yang nanya, gimana caranya akses remote server MySQL. Misalnya Remote server MySQL nya di IP 192.168.100.1 lalu mau akses dari host yang berbeda dengan IP: 192.168.100.2.</p>
<p>Mengingat sudah lama tidak ngoprek – ngoprek lagi linux, maklum sekarang prioritasnya agak bergeser, maka saya harus googling lagi. Bagaimanapun ngoprek selalu menarik, walau untuk hal – hal yang dulunya sudah sering saya kerjakan.:). Bukan terpaksa Cuma sayang kalau pengetahuanya hilang hanya karena waktu dan kemalasan. Jadi pertanyaan itu baik buat kita me-refresh pengetahuan.</p>
<p>Nah, caranya begini: Kalau menggunakan WAMP atau XAMPP di Windows, cukup dengan perintah:<!--more--></p>
<p>mysql&#62;grant all privileges on *.* to ‘coba’@’192.168.100.2’ identified by ‘coba’;<br />
mysql&#62;flush privileges;</p>
<p>Lalu dari client, silahkan mengakses MySQL server tersebut:<br />
$ mysql –ucoba –h192.158.100.1 –p coba</p>
<p>Cuman, skrip itu tidak jalan di linux yang secara default menerapkan tingkat keamanan yang baik. Pada sisi Server MySQL perlu diedit konfigurasi MySQL nya:</p>
<p>$sudo nano /etc/mysql/my.cnf</p>
<p>Cari baris:<br />
[mysqld]<br />
…..<br />
…..<br />
bind-address = 192.168.100.1<br />
…<br />
…</p>
<p>Lalu, restart mysql server:<br />
$ sudo /etc/init.d/mysql restart</p>
<p>Nah, sekarang coba konek lagi mysql server dari client. Oh ya, supaya server mysql tersebut dapat diakses dari client mana saja maka ip: ’192.168.100.2’ diganti menjadi tanda ‘%’. Selamat mencoba</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Connection to MySQL server using Ms. ADO on VB6]]></title>
<link>http://microlenz.wordpress.com/2009/05/15/connection-to-mysql-server-using-ms-ado-on-vb6/</link>
<pubDate>Fri, 15 May 2009 07:38:46 +0000</pubDate>
<dc:creator>microlenz</dc:creator>
<guid>http://microlenz.wordpress.com/2009/05/15/connection-to-mysql-server-using-ms-ado-on-vb6/</guid>
<description><![CDATA[If you want to create an office or other applications and you want to connect to the MySQL server, y]]></description>
<content:encoded><![CDATA[If you want to create an office or other applications and you want to connect to the MySQL server, y]]></content:encoded>
</item>
<item>
<title><![CDATA[installare mysql su leopard - apple mac osx]]></title>
<link>http://wepo.wordpress.com/2008/12/17/installare-mysql-su-leopard-apple-mac-osx/</link>
<pubDate>Wed, 17 Dec 2008 18:30:48 +0000</pubDate>
<dc:creator>wepo</dc:creator>
<guid>http://wepo.wordpress.com/2008/12/17/installare-mysql-su-leopard-apple-mac-osx/</guid>
<description><![CDATA[Sarò conciso: Andate qua e scaricate il pacchetto adatto a voi. Se avete un core 2 duo, selezionate ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sarò conciso:</p>
<ol>
<li>Andate <a href="http://dev.mysql.com/downloads/mysql/5.1.html#macosx-dmg" target="_blank">qua</a> e scaricate il pacchetto adatto a voi. Se avete un <strong>core 2 duo</strong>, selezionate <strong>x86_64</strong>. (mac osx 10.5 sta per leopard, 10.4 sta per tiger&#8230;)</li>
<li>Installate <span style="text-decoration:underline;">tutto tranne</span> <strong><em>MysqlStartupitem.pkg </em><span style="font-weight:normal;">(scegliete installa per tutti gli utenti quando richiesto)</span></strong></li>
<li>Aprite il <strong><em>terminate</em></strong> (in Applicazioni/Utility)</li>
<li>Scrivete <em><strong>vim .bash_profile</strong></em><em> </em>[invio] poi schiacciate il tasto <strong><em>i</em></strong></li>
<li>aggiungete questa riga: <strong><em>export PATH=&#8221;$PATH:/usr/local/mysql/bin&#8221;  </em><span style="font-weight:normal;">(non fate copia e incolla)</span></strong></li>
<li><em><span style="font-weight:normal;font-style:normal;">schiacciate </span>esc <span style="font-style:normal;font-weight:normal;">poi la sequenza di tasti <em><strong>:wq </strong><span style="font-style:normal;">(inclusi i due punti), poi [invio]</span></em></span></em></li>
<li><em><span style="font-style:normal;font-weight:normal;">ora siete di nuovo al terminale. Inserite il comando <strong><em>sudo su </em><span style="font-weight:normal;">(e quando richiesto la vostra password)</span></strong></span></em></li>
<li><em><span style="font-style:normal;font-weight:normal;">Ora inserite il comando </span><strong>mkdir /var/mysql</strong></em></li>
<li>Adesso il comando <strong><em>ln -s /tmp/mysql.sock /var/mysql</em></strong></li>
</ol>
<p>Fatto. Ora potete andare in <strong><em>Preferenze di sistema</em></strong> per far partire il server.</p>
<p>Se al punto 7 ci sono problemi con la password, sicuramente il vostro utente è sprovvisto di quest&#8217;ultima. Andate in <strong><em>preferenze di sistema&#62;Utenti</em></strong> e rimediate.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[instalar y configurar un servidor web en linux - ubuntu hardy heron]]></title>
<link>http://javierzg.wordpress.com/2008/10/02/instalar-y-configurar-un-servidor-web-en-linux-ubuntu-hardy-heron/</link>
<pubDate>Thu, 02 Oct 2008 05:58:27 +0000</pubDate>
<dc:creator>Javier Garay</dc:creator>
<guid>http://javierzg.wordpress.com/2008/10/02/instalar-y-configurar-un-servidor-web-en-linux-ubuntu-hardy-heron/</guid>
<description><![CDATA[Para montar un servidor web con lo básico (apache2, php y mysql) en Ubuntu Hardy debemos hacer lo si]]></description>
<content:encoded><![CDATA[Para montar un servidor web con lo básico (apache2, php y mysql) en Ubuntu Hardy debemos hacer lo si]]></content:encoded>
</item>
<item>
<title><![CDATA[[DELPHI] - Start e Stop del MySQL Server da un'applicazione Delphi su Pendrive]]></title>
<link>http://silverpeacock.wordpress.com/2008/09/15/start-stop-mysql-delphi-pendrive/</link>
<pubDate>Mon, 15 Sep 2008 07:05:53 +0000</pubDate>
<dc:creator>silverpeacock</dc:creator>
<guid>http://silverpeacock.wordpress.com/2008/09/15/start-stop-mysql-delphi-pendrive/</guid>
<description><![CDATA[Scenario&#8230; Abbiamo un&#8217;applicazione Delphi (desktop) con Data Base MySQL. Vogliamo che l]]></description>
<content:encoded><![CDATA[Scenario&#8230; Abbiamo un&#8217;applicazione Delphi (desktop) con Data Base MySQL. Vogliamo che l]]></content:encoded>
</item>
<item>
<title><![CDATA[Mengakali Versi Trial SQLyog Enterprise]]></title>
<link>http://thegands.wordpress.com/2008/08/07/mengakali-versi-trial-sqlyog-enterprise/</link>
<pubDate>Thu, 07 Aug 2008 10:59:10 +0000</pubDate>
<dc:creator>thegands</dc:creator>
<guid>http://thegands.wordpress.com/2008/08/07/mengakali-versi-trial-sqlyog-enterprise/</guid>
<description><![CDATA[SQLyog adalah sebuah aplikasi yang digunakan sebagai gui database manager untuk database MySQL. Deng]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://thegands.files.wordpress.com/2008/08/sc_sqlyog.gif"><img class="alignleft size-medium wp-image-251" style="margin-right:5px;" src="http://thegands.wordpress.com/files/2008/08/sc_sqlyog.gif?w=250" alt="" width="250" height="120" /></a><a href="http://www.sqlyog.com/" target="_blank"><strong>SQLyog</strong></a> adalah sebuah aplikasi yang digunakan sebagai gui <a href="http://www.google.co.id/search?hl=id&#38;q=database+manager&#38;btnG=Telusuri&#38;meta=" target="_blank">database manager</a> untuk database <a href="http://www.mysql.com/" target="_blank">MySQL</a>. Dengan menggunakan aplikasi ini, akan memudahkan kita dalam membuat database baru, membuat tabel, membuat user baru <a href="http://www.mysql.com/" target="_blank">MySQL</a>, menambahkan entri ke tabel, menghapus entry maupun mengubah entry.</p>
<p>Dari sisi kemudahan, jelas aplikasi ini lebih mudah digunakan dari pada kita harus capek-capek mengetikkan <a href="http://www.1keydata.com/sql/sql-syntax.html" target="_blank">perintah sql</a> pada <a href="http://www.mysql.com/" target="_blank">mysq</a>l console hanya untuk membuat database baru, maupun membuat tabel dengan jumlah field yang sangat banyak.</p>
<p>Apalagi terjadi kesalahan sintaks yang membuat kita harus mengetikkan ulang <a href="http://dev.mysql.com/doc/refman/5.0/en/sql-syntax.html" target="_blank">perintah sql</a> tersebut dikarenakan tidak ada fitur history pada <a href="http://www.mysql.com/" target="_blank">MySQL</a>.</p>
<p>Dengan menggunakan <a href="http://www.sqlyog.com/" target="_blank">SQLYog</a>, kita dapat mengotomatisasikan pekerjaan itu karena aplikasi ini berbasis GUI(Graphical User Interface), walaupun<a href="http://www.sqlyog.com/" target="_blank"> SQLYog</a> tetap menyediakan sebuah text-area untuk mengetikkan <a href="http://dev.mysql.com/doc/refman/5.0/en/sql-syntax.html" target="_blank">perintah sql</a>.</p>
<p><a href="http://www.sqlyog.com/" target="_blank">SQLYog Enterprise</a> versi trial hanya dibatasi penggunaanya selama 30 hari. Namun kita tetap bisa menggunakannya selama yang kita mau.</p>
<p><!--moreMari kita akali si SQLYog...--></p>
<p>Coba lihat skrin shut di bawah yang menunjukkan bahwa periode penggunaan aplikasi ini sudah expired yang artinya aplikasi trial ini tidak bisa kita pergunakan lagi.</p>
<p><a href="http://thegands.files.wordpress.com/2008/08/sqlyog1.jpg"><img class="alignnone size-medium wp-image-252" src="http://thegands.wordpress.com/files/2008/08/sqlyog1.jpg?w=300" alt="" width="300" height="77" /></a></p>
<p>Uninstall aplikasi ini dan menginstall yang baru tidak akan mengubah keadaan. Jadi lebih baik kita gunakan cara dibawah.</p>
<p><span style="color:#ff0000;"><strong>Caranya adalah:</strong></span></p>
<blockquote><p>Memundurkan tanggal pada komputer kamu. Tanggal expired aplikasi ini pada komputer saya adalah pada hari ini tanggal 07 Agustus 2008. Agar saya tetap dapat mengubah aplikasi ini, saya memundurkan tanggal komputer saya menjadi tanggal 06 Agustus 2008.</p></blockquote>
<p>Dan akhirnya proteksi <a href="http://www.webyog.com/en/downloads.php" target="_blank">SQLyog Enterprise Edition versi trial</a> pun terkuak sedikit. Lihat skrin shut dibawah untuk melihat hasilnya.</p>
<p><a href="http://thegands.files.wordpress.com/2008/08/sqlyog2.jpg"><img class="alignnone size-medium wp-image-253" src="http://thegands.wordpress.com/files/2008/08/sqlyog2.jpg?w=300" alt="" width="300" height="77" /></a></p>
<p>Hehehe&#8230;. tersisa satu hari sebelum aplikasinya expired kan? Jika besoknya expired lagi, kamu tinggal mundurin lagi deh tanggalnya <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
<p>Repot ya? hehehe&#8230; namun saat ini saya hanya bisa ngasih trik itu. Saya belum oprek-oprek ke registry ataupun file konfigurasi yang terenkripsi milik SQLYog, soalnya lagi sibuk, hehehehehe&#8230;.</p>
<p>Kalau kamu mau menggunakan aplikasi ini, donlot langsung versi trialnya dari <a href="http://www.webyog.com/en/download_form.php?url=http%3A%2F%2Fwww.webyog.com%2Fdownloads%2FSQLyog702EntTrial.exe" target="_blank">sini</a>.</p>
<p>Atau klo kamu punya duit, beli aplikasinya dan donlot di <a href="http://www.webyog.com/CustomerArea" target="_blank">sini</a>.</p>
<p>Selamat ber <strong>SQLYog </strong>ria <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I think I'm in love....and not just with my wife]]></title>
<link>http://netbeansboy.com/2008/07/22/i-think-im-in-loveand-not-just-with-my-wife/</link>
<pubDate>Tue, 22 Jul 2008 11:26:28 +0000</pubDate>
<dc:creator>pncblessed</dc:creator>
<guid>http://netbeansboy.com/2008/07/22/i-think-im-in-loveand-not-just-with-my-wife/</guid>
<description><![CDATA[We&#8217;ve got a new member of our programming team, Uthay, I can&#8217;t even say or spell his ful]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We&#8217;ve got a new member of our programming team, Uthay, I can&#8217;t even say or spell his full name, but anyway, he came along and showed me this tool called SQLyog.</p>
<p>Although we only had the community edition after some coaxing we managed to get the boss to shell out for the full version, enterprise edition.</p>
<p>This is absolutely superb, it is WELL WORTH upgrading the full enterprise version has some amazing tools that make database development MUCH easier. Especially when like us we have to modify and change databases then roll out the changes to another server. For example when we have 5 or 6 versions of our application out there and want to roll out the new application, that&#8217;s easy enough, but remembering the differences between the two versions is a bit of a pain, with this tool we can just syncronize them and it will modify the destination tables (and data if we want) to match the source.</p>
<p>I particularly like the Query development tool, one of the good things about good old Microsoft Access was how easy it was to build complex queries, in this software it is just as easy, particularly useful when building large scale data structures.</p>
<p>It&#8217;s such a shame it doesn&#8217;t support anything else apart from MYSQL. However I will be transmographying a database from a SQL server over to MYSQL JUST TO USE IT!</p>
<p><a href="http://www.webyog.com/en/">http://www.webyog.com/en/</a></p>
<p>There is a community version but the full version is only like £50 so it&#8217;s well worth purchasing.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[300 YTL'ye  Web Site Sahibi Olun]]></title>
<link>http://vidyom.wordpress.com/2008/07/17/300-ytlye-web-site-sahibi-olun/</link>
<pubDate>Thu, 17 Jul 2008 14:51:06 +0000</pubDate>
<dc:creator>rapmagazin</dc:creator>
<guid>http://vidyom.wordpress.com/2008/07/17/300-ytlye-web-site-sahibi-olun/</guid>
<description><![CDATA[Mail &amp; Msn = webvarlos@msn.com Tel = 0554 355 23 03 Varlos Web Tasarımı Seçtiğiniz İçin Teşekkür]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft" src="http://img369.imageshack.us/img369/7342/varloswebtasarimqb9.jpg" alt="" width="606" height="300" /></p>
<p>Mail &#38; Msn = webvarlos@msn.com</p>
<p>Tel = 0554 355 23 03</p>
<p>Varlos Web Tasarımı Seçtiğiniz İçin Teşekkür Ederiz.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pemrograman Database dengan VB dan MySQL]]></title>
<link>http://bangdanu.wordpress.com/2008/07/04/pemrograman-database-dengan-vb-dan-mysql/</link>
<pubDate>Fri, 04 Jul 2008 03:50:16 +0000</pubDate>
<dc:creator>bangdanu</dc:creator>
<guid>http://bangdanu.wordpress.com/2008/07/04/pemrograman-database-dengan-vb-dan-mysql/</guid>
<description><![CDATA[Banyak pendapat yang mengatakan sulitnya mempelajari teknik bahasa pemrograman, baik karena alasan a]]></description>
<content:encoded><![CDATA[Banyak pendapat yang mengatakan sulitnya mempelajari teknik bahasa pemrograman, baik karena alasan a]]></content:encoded>
</item>
<item>
<title><![CDATA[Usando Amarok con MySQL]]></title>
<link>http://videlanghelo.wordpress.com/2008/04/07/usando-amarok-con-mysql/</link>
<pubDate>Mon, 07 Apr 2008 17:34:47 +0000</pubDate>
<dc:creator>videlanghelo</dc:creator>
<guid>http://videlanghelo.wordpress.com/2008/04/07/usando-amarok-con-mysql/</guid>
<description><![CDATA[Por defecto, amarok nos permite construir su colección mediante SQLite, lo cual no viene mal si no q]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Por defecto, amarok nos permite construir su colección mediante <strong>SQLite</strong>, lo cual no viene mal si no quieres liarte configurando otras cosas como el <strong>MySQL</strong>. Desgraciadamente, cuando tu biblioteca es demasiado grande, SQLite no funciona todo lo bien que debería, volviendo a <strong>Amarok</strong> un tanto lento e inestable. Para solucionarlo, podemos utilizar una base de datos mas seria como MySQL o PosgreSQL. En este caso lo haremos con MySQL.</p>
<p>Lo primero que tenemos que hacer es instalarlo desde los repositorios. Abrimos un terminal y escribimos:</p>
<p><strong>sudo apt-get install mysql-server</strong></p>
<p>Una vez que se haya instalado nos pedirá la contraseña para el root de MySQL. Se la ponemos y entramos como root:</p>
<p><strong>sudo mysql -u root mysql -p</strong></p>
<p>Una vez dentro de MySQL nos saldrá un prompt diferente. Pongo aquí los comandos genéricos y remarco las variaciones de cada usuario con cursiva:</p>
<p><strong><code>SET PASSWORD=PASSWORD('<em>contraseña</em>');</code></strong></p>
<p><strong><code>CREATE DATABASE amarok;</code></strong></p>
<p><strong><code>GRANT ALL ON amarok.* to <em>usuario</em>@localhost IDENTIFIED BY '<em>contraseña</em>';</code></strong></p>
<p><code><strong>quit;</strong></code></p>
<p>Una vez hecho esto vamos a Amarok, menú Preferencias y Configurar Amarok.</p>
<p>Vamos al apartado colección y en el desplegable de <strong>Base de datos</strong> elegimos MySQL, <strong>servidor</strong> localhost, <strong>base de datos</strong> amarok, <strong>usuario</strong> <em>tuusuario</em> y <strong>contraseña</strong> <em>tucontraseña</em>. Si os da problemas podeis probar a poner <em>root</em> en el usuario. Os recomiendo encarecidamente que lo hagais, el aumento de rendimiento es muy significativo.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MySQL install fails on Ubuntu with static IP]]></title>
<link>http://axixmiqui.wordpress.com/2008/03/12/mysql-install-fails-on-ubuntu-with-static-ip/</link>
<pubDate>Wed, 12 Mar 2008 21:23:47 +0000</pubDate>
<dc:creator>Andrew Hahn</dc:creator>
<guid>http://axixmiqui.wordpress.com/2008/03/12/mysql-install-fails-on-ubuntu-with-static-ip/</guid>
<description><![CDATA[Update: It was not the static IP address, but the fact that due to a typo in /etc/network/interfaces]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><b>Update:</b></p>
<p><i>It was not the static IP address, but the fact that due to a typo in</i> <code>/etc/network/interfaces</code> <i>the loopback device was not active.</i></p>
<p>Installing MySQL server on Ubuntu fails if the machine has a static IP address.</p>
<p><code>sudo apt-get install mysql-server</code></p>
<p>Results in:</p>
<p><code>Setting up mysql-server-5.0 (5.0.45-1ubuntu3.1) ...<br />
* Stopping MySQL database server mysqld<br />
...done.<br />
* Starting MySQL database server mysqld<br />
...fail!<br />
invoke-rc.d: initscript mysql, action "start" failed.<br />
dpkg: error processing mysql-server-5.0 (--configure):<br />
subprocess post-installation script returned error exit status 1<br />
dpkg: dependency problems prevent configuration of mysql-server:<br />
mysql-server depends on mysql-server-5.0; however:<br />
Package mysql-server-5.0 is not configured yet.<br />
dpkg: error processing mysql-server (--configure):<br />
dependency problems - leaving unconfigured<br />
Processing triggers for libc6 ...<br />
ldconfig deferred processing now taking place<br />
Errors were encountered while processing:<br />
mysql-server-5.0<br />
mysql-server<br />
E: Sub-process /usr/bin/dpkg returned an error code (1)</code></p>
<p>To fix this edit <code>/etc/mysql/my.conf</code> and change the <code>bind-address</code> to the static address of the machine. Then rerun apt-get to finish the configuration of the packages.</p>
<p><code>sudo apt-get -f install</code></p>
<p>Reported to <a href="https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.0/+bug/201584">Ubuntu launchpad </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Joolo bedava mysql destekli sunucu]]></title>
<link>http://bildirim.net/2007/06/20/joolo-bedava-mysql-destekli-sunucu/</link>
<pubDate>Wed, 20 Jun 2007 00:51:52 +0000</pubDate>
<dc:creator>gopower</dc:creator>
<guid>http://bildirim.net/2007/06/20/joolo-bedava-mysql-destekli-sunucu/</guid>
<description><![CDATA[mysq server ve php destekli, 1 gb. disk alanı, 10 gb. veri trafiği mevcut bir sunucuya sahip olabilm]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>mysq server ve php destekli, 1 gb. disk alanı, 10 gb. veri trafiği  mevcut bir  sunucuya sahip olabilmek için, <a href="http://www.joolo.com/">buradan</a> üye olmak yeterli.  subdomain ise <strong>isminiz.joolo.com</strong> şeklinde.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Looking for a database?  Check out these two.]]></title>
<link>http://mmurphy77.wordpress.com/2006/11/21/looking-for-a-database-check-out-these-two/</link>
<pubDate>Tue, 21 Nov 2006 22:18:57 +0000</pubDate>
<dc:creator>mmurphy77</dc:creator>
<guid>http://mmurphy77.wordpress.com/2006/11/21/looking-for-a-database-check-out-these-two/</guid>
<description><![CDATA[If you are looking for a real database (something with a bit more umph than MS Access) check out the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you are looking for a real database (something with a bit more umph than MS Access) check out these two</p>
<p><a href="http://www.postgresql.org" title="PostgreSQL" target="_blank">PostgreSQL</a></p>
<p><a href="http://www.enterprisedb.com/index.do" title="EnterpriseDB" target="_blank"> EnterpriseDB</a></p>
<p>I have used PostgreSQL in some of my projects and have found it to be very capable.  I like the views, stored procedures, triggers and rules in particular.</p>
<p>EnterpriseDB is new to me but this article</p>
<p><a href="http://www.internetnews.com/dev-news/article.php/3644946" title="Vonage's Open Source Database Odyssey" target="_blank">Vonage&#8217;s Open Source Database Odyssey</a></p>
<p>Caught my attention.  Turns out EnterpriseDB is based on PostgreSQL.  You may have heard of MySQL and not heard of PostgreSQL.  If so that is a shame.  When I initially went looking for a database for  Linux some years ago, there seemed to be two main contenders.  MySQL and PostgreSQL.  MySQL had (and still does have) more attention than PostgreSQL but two things in particular turned me away from it.  At the time I started looking the license did not allow for free commercial use.  Even more glaring (in my opinion) was the fact that it did not support views (SQL command / concept).  I went with PostgreSQL as a result.  As I understand it they have fixed some of that but I still find PostgreSQL a bit easier to work with.  At any rate, check them out.</p>
<p><a href="http://www.postgresql.org" title="PostgreSQL" target="_blank"><img src="http://mmurphy77.wordpress.com/files/2006/11/pgsql-32x32_1.gif" alt="PostgreSQL" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MySql 5.0 for idiots]]></title>
<link>http://aberant.wordpress.com/2006/09/17/mysql-50-for-idiots/</link>
<pubDate>Sun, 17 Sep 2006 21:41:58 +0000</pubDate>
<dc:creator>aberant</dc:creator>
<guid>http://aberant.wordpress.com/2006/09/17/mysql-50-for-idiots/</guid>
<description><![CDATA[maybe this will save you an hour or so of your life to learn from my mistake.  When installing MySql]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>maybe this will save you an hour or so of your life to learn from my mistake.  When installing MySql 5.0 on windows and you screw up the configuration and want to start over from scratch a couple things will help you out.</p>
<ol>
<li>Remove the MySql service before you uninstall.  This can be easily done with the configuration manager and i recommend this because it seemed ( atleast on my system) that uninstaling the program didn&#8217;t always remove the service.</li>
<li>Delete the MySql directory in program files after you uninstall.  The configuration files are kept here, so if you don&#8217;t delete this before you reinstall, you have to battle with the same botched config files again.</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Book Review: PHP/MySQL Books for Web Development]]></title>
<link>http://tobywobytiger.wordpress.com/2006/08/03/book-review-php-books/</link>
<pubDate>Fri, 04 Aug 2006 05:41:27 +0000</pubDate>
<dc:creator>tobywobytiger</dc:creator>
<guid>http://tobywobytiger.wordpress.com/2006/08/03/book-review-php-books/</guid>
<description><![CDATA[For about a couple of months I have been religiously studying PHP and MySQL to develop websites. Pre]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>For about a couple of months I have been religiously studying PHP and MySQL to develop websites.  Previously, when I was studying Perl I did not carefully screen for the &#8220;perfect&#8221; book to learn from.  At that time, I figured any book would do but I found out later that some books covered much more content than others and were also presented much better.</p>
<p>So this time, I decided to screen PHP books for the one that would be best for me, and of course that meant most content and presentation.</p>
<p>After reviewing several books, I thought it might be beneficial for aspiring PHP developers like me if I gave a review of which books are good beginner book and which books are good for intermediate level.  I will list the books in the order from beginner to intermediate (I don&#8217;t have an advanced category yet because I am still not at that level &#62;.&#60; ):</p>
<ol>
<li><b>PHP and MySQL Web Development</b>, 3rd Ed., <i>Luke Welling and Laura Thomson </i><b>[rating 4/5]</b>:  This is a great beginners book and the content is quite comprehensive.  The book is broken down into five parts: PHP, MySQL, e-commerce/security, advanced PHP, and case studies (6 example sites).  The PHP and MySQL gives all the standard information that you&#8217;d find in other PHP books, plus a bit more in terms of content.  Where it might lack content, they give you references for further reading.  What I did find lacking though is comprehensive information about PHP security.  Most beginner books will not cover this topic in depth but after reading &#8220;Essential PHP Security&#8221;, I have found that PHP security is a crucial aspect in web development. Welling and Thomson do mention about encryption and using SSL as a means for sending encrypted messages, but they did not go over in depth on topics such as cross site scripting, SQL injection and other typical ways web sites can be compromised by malicious users.  Overall, this book is a great place for beginners to start with.  My only gripe is the lack of security topics and how to filter incoming and outgoing data.</li>
<li><b>Core Web Application Develoopment with PHP and MySQL</b>, <i>Marc Wandschneider</i> <b>[rating 4.5/5]</b>:  This book, like PHP and MySQL Web Development, is a great place to start for beginners.  The book explains everything concisely, more so than PHP and MySQL Web Development.  I also feel that it is slightly more comprehensive in the security subject, but this book also does not do justice as I feel it should. Wandschneider does mention though about protecting by filtering data, but he doesn&#8217;t go into depth as I had hoped he would.  Some might consider this book is for intermediates (one of the reviewers in Amazon.com felt it was so) but I feel that it&#8217;s also good for beginners. Wandschneider might go into depth a little more on each topic as compared to other authors, but I think that is a good thing, especially for beginners because it&#8217;ll help beginners develop a good foundation for understanding PHP.  In any case, this is a great book that probably will be frequently referred to.</li>
<li><b>Core PHP Programming</b>, <i>3rd Ed</i>., Leon Atkinson <b>[rating 4/5]</b>:  This book is written more like a reference book rather than a teaching book.  If you learn better by seeing all the functions in the PHP library, this might be the book for you to begin with.  To me, I like to read a book that teaches you how to program first, then get a reference book to further learn about the functions that were not listed in the teaching book.  This book seems to be very comprehensive, but I am not sure how comprehensive it is because I don&#8217;t have enough knowledge of the PHP library.</li>
<li><b>PHP 5 Unleashed</b>, <i>John Cogshall</i> <b>[rating 5/5]</b>:  This book is more of an intermediate level book.  It&#8217;s best for reading after reading one of the books listed above.  I like this book a lot because it shows you <i>how</i> to write PHP effectively.  It tells you what to watch out for and what not to do, which is great to know after you learn about the language.  It doesn&#8217;t cover the basics in depth, thus beginners might get lost.</li>
<li><b>Essential PHP Security</b>, <i>Chris Shiflett</i> <b>[rating 4.5/5]</b>:  This is definitely an intermediate book.  It&#8217;s a great read right after you learn about PHP, since most beginners PHP books lack the topic on security.  This is where I learned majority about PHP and web application vulnerabilities.  With out it, I would never have known how vulnerable my codes are if I simply followed the examples from the beginners books.  This book covers a lot of topics on security.  The only issue I have is the lack of examples.  This book would have been better if the examples were explained further.  Sometimes I felt like the subject was cut short.  The book is quite thin, so adding a bit more &#8216;meat&#8217; won&#8217;t hurt.  But so far this is the only book I&#8217;ve read that discusses PHP security in depth.  There are a few other books out there that I&#8217;d like to get a hold of to see just to compare with this book.</li>
</ol>
<p>There are a few other books I&#8217;ve looked at that I am not going to mention because I believe the books mentioned above are the better ones out there for beginners and intermediates.</p>
<p><b>Recommendations for book purchases</b>:  I recommend for beginners to start with &#8220;Core Web Development with PHP and MySQL&#8221; then move on to &#8220;Essential Web Security&#8221;.  If you want to brush up on PHP 5 and hone your skills, follow up with &#8220;PHP 5 Unleashed&#8221;.  If you want something that is more beginner, but less comprehensive, start with &#8220;PHP and MySQL Web Development&#8221; in place of the Core book.</p>
<p><b>Very Beginner</b>:  &#8220;PHP and MySQL Web Development&#8221; -&#62; &#8220;Essential Web Security&#8221; -&#62; &#8220;PHP 5 Unleashed&#8221;</p>
<p><b>Beginner</b>: &#8220;Core Web Development with PHP and MySQL&#8221; -&#62; &#8220;Essential Web Security&#8221; -&#62; &#8220;PHP 5 Unleashed&#8221;</p>
<p><b>Intermediate</b>: &#8220;PHP 5 Unleashed&#8221; -&#62; ???</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Atutor 的語言包翻譯]]></title>
<link>http://teds.wordpress.com/2006/03/07/atutor-%e7%9a%84%e8%aa%9e%e8%a8%80%e5%8c%85%e7%bf%bb%e8%ad%af/</link>
<pubDate>Mon, 06 Mar 2006 18:35:00 +0000</pubDate>
<dc:creator>teds</dc:creator>
<guid>http://teds.wordpress.com/2006/03/07/atutor-%e7%9a%84%e8%aa%9e%e8%a8%80%e5%8c%85%e7%bf%bb%e8%ad%af/</guid>
<description><![CDATA[因為atutor 1.5.2的繁體中文版一直遲遲未出來 可是系統已經要上線了&#8230;所以只好拿 版本 1.5.1的繁體中文語言包來翻譯 首先先匯入1.5.1的繁體中文語系 然後我想要知道哪些詞是]]></description>
<content:encoded><![CDATA[因為atutor 1.5.2的繁體中文版一直遲遲未出來 可是系統已經要上線了&#8230;所以只好拿 版本 1.5.1的繁體中文語言包來翻譯 首先先匯入1.5.1的繁體中文語系 然後我想要知道哪些詞是]]></content:encoded>
</item>

</channel>
</rss>
