<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1028914" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1028914</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169824</link>
    <description> &lt;p&gt;MySql.. never used anything else&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Apr 2005 23:23:39 +0000</pubDate>
 <dc:creator>StudioWorks</dc:creator>
 <guid isPermaLink="false">comment 1169824 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169787</link>
    <description> &lt;p&gt;Bah, *grumble* Microsoft *grumble*&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Apr 2005 12:19:21 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1169787 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169760</link>
    <description> &lt;p&gt;Sounds like MS SQL Server 2005 will be out soon. Should be interesting to see what they add/change since SQL Server 2000. &lt;/p&gt;
&lt;p&gt;-dk&lt;/p&gt;
 </description>
     <pubDate>Tue, 19 Apr 2005 15:11:54 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1169760 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169746</link>
    <description> &lt;p&gt;Andy is right, SQL is in fact an ANSI/ISO Specification (SQL99) so databases - although their levels of conformance very and there are quirks - should all be able to parse and understand your SQL.&lt;/p&gt;
&lt;p&gt;As said, there are quirks I&#039;m afraid and you will occassioanlly find yourself getting infuriated as something that worked in Access doesn&#039;t work in MySQL (or vice-versa), in this case head to &lt;a href=&quot;http://dev.mysql.com&quot; class=&quot;bb-url&quot;&gt;http://dev.mysql.com&lt;/a&gt; and search for the syntax; the documentation is quite good &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 19 Apr 2005 11:52:38 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1169746 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169742</link>
    <description> &lt;p&gt;Looks like it would work... I believe SQL language is pretty much standardised across the most database apps&lt;/p&gt;
 </description>
     <pubDate>Tue, 19 Apr 2005 10:48:30 +0000</pubDate>
 <dc:creator>andy206uk</dc:creator>
 <guid isPermaLink="false">comment 1169742 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169738</link>
    <description> &lt;p&gt;It would appear that the SQL strings I had to learn for access are also used in MySql example of one of them &quot;SELECT volume, number, date, URL, manypages FROM dat ORDER BY date DESC&quot;. Is that a valid sting for Mysql ?&lt;br /&gt;
Thank you JeevesBond very informative.&lt;/p&gt;
 </description>
     <pubDate>Tue, 19 Apr 2005 09:50:10 +0000</pubDate>
 <dc:creator>bja888</dc:creator>
 <guid isPermaLink="false">comment 1169738 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169708</link>
    <description> &lt;p&gt;MySQL is a SQL server, simply: You send it SQL, it does stuff.&lt;/p&gt;
&lt;p&gt;Access is like having a DB front-end and SQL server both running on your computer: Access is the front-end, the Jet Engine (arf arf - I love calling it that) is the SQL server. As you get deeper into the workings of Access you&#039;ll find that all Access does is send SQL to Jet and Jet does stuff, hence it&#039;s behaviour is different to many other applications - this often manifests itself as appearing to be less user-friendly (although the average user should never go near Access, they don&#039;t know enough about DB design/management).&lt;/p&gt;
&lt;p&gt;When you get MySQL all you&#039;re getting is the backend, it is the &#039;SQL Server&#039; (unless you download some of their management tools as well), there is a command-line interface included but that&#039;s about it. So when you get this you&#039;ll presumably be building a nice front-end in your chosen language (PHP, VB, C++ etc). &lt;/p&gt;
&lt;p&gt;The differences between Access and MySQL are easily highlighted if you download the MyODBC connector, you can then hook Access up to MySQL. So instead of Access sending SQL to Jet and Jet doing stuff, Access sends SQL to MySQL and it does stuff instead. The advantage of this is that you can create a true client/server interface where the client runs on one machine and the server runs on another machine - something that is not possible using Access alone (it can do client/file server but that&#039;s a completely different matter).&lt;/p&gt;
&lt;p&gt;The word: &#039;Stuff&#039; is used in this context to describe any SQL operation, e.g. the client sends &quot;SELECT * FROM `products`;&quot; the server grabs all the records from the products database and throws the result back to the client. Note that all the hard work is done by the server instead of the client &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 18 Apr 2005 19:40:40 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1169708 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169697</link>
    <description> &lt;p&gt;Well considering your advies and what I have been thinking about the past week I figure like this.&lt;br /&gt;
Access - use when I need to send a script (+ DB) to a client. Easiest to configure&lt;br /&gt;
Mysql - The my sites and buisness ventures&lt;/p&gt;
&lt;p&gt;I will look into mysql very soon. But I&#039;m not sure how diffrent it will be from access. I&#039;m used to editing the DB on a table and you need a SQL server to run a mysql db?&lt;/p&gt;
 </description>
     <pubDate>Mon, 18 Apr 2005 17:40:25 +0000</pubDate>
 <dc:creator>bja888</dc:creator>
 <guid isPermaLink="false">comment 1169697 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169680</link>
    <description> &lt;p&gt;In terms of popularity MySQL wins I believe, also it appears to be the most widely supported, in addition there are a variety of useful - more importantly free - tools available to help you configure your DB (phpMyAdmin etc). What do you have available and what tools does your host provide to support your decision?&lt;/p&gt;
&lt;p&gt;There are many things to take into account, and each solution fits different purposes. If you give us more information on the choice you have to make, we will be in a better position to help.&lt;/p&gt;
 </description>
     <pubDate>Mon, 18 Apr 2005 12:31:37 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1169680 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/best-db#comment-1169666</link>
    <description> &lt;p&gt;For most things MySQL works just fine.  Unless you are talking millions and millions of records you should be fine with MySQL.  As for access, its cheap but slow if you have to do a large number of queries.  Its good for small business applications but I would not recommend using it for any websites if you can avoid it. Security is also an issue here.  Don&#039;t forget PostGre too &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;-dk&lt;/p&gt;
 </description>
     <pubDate>Sun, 17 Apr 2005 19:38:49 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1169666 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
