<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1005887" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1005887</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031407</link>
    <description> &lt;p&gt;thx, the biggest file i&#039;ve used so far has been 60 kb so i should be ok with flat file.  the biggest i see my db going is 75 kb.&lt;/p&gt;
&lt;p&gt;thx again  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/wink.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;Thumbs up or down ratings of the best and worst ways to make $$$ on the net. &lt;a href=&quot;http://www.birminghamnet.com/search-engines/resources/webmaster_tools/&quot; class=&quot;bb-url&quot;&gt;CLICK 4 CASH!&lt;/a&gt; from Affiliate Programs and Ad Networks&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 18 Mar 2000 05:21:00 +0000</pubDate>
 <dc:creator>fairhousing</dc:creator>
 <guid isPermaLink="false">comment 1031407 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031406</link>
    <description> &lt;p&gt;Hi Peter,&lt;/p&gt;
&lt;p&gt;   Thanks for the info; unfortunately as far as AOL knows, ASP is Cleo&#039;s pet.&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;GrassBlade: cut&amp;amp;paste javascript&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 18 Mar 2000 02:39:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1031406 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031405</link>
    <description> &lt;p&gt;fairhousing,&lt;/p&gt;
&lt;p&gt;I have been helping a friend set up a shopping cart that uses a flatfile db that is right at 1MB in size (1,024,841 to be exact) and from the time you press the search button until you get a result takes about 20-25 seconds on a 56k connection. About 5500 lines in it. How fast if it were in a mySQL db, who knows but probably would be a little faster.&lt;/p&gt;
&lt;p&gt;Dan&lt;/p&gt;
 </description>
     <pubDate>Fri, 17 Mar 2000 22:28:00 +0000</pubDate>
 <dc:creator>cds</dc:creator>
 <guid isPermaLink="false">comment 1031405 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031404</link>
    <description> &lt;p&gt;Vincent,&lt;/p&gt;
&lt;p&gt;By DSN-less I meant that you woudln&#039;t have to install a System DSN on the server, but you would still need some form of server-side scripting, this is an example in ASP using an Access DB:&lt;/p&gt;
&lt;p&gt;Set Conn = Server.CreateObject(&quot;ADODB.Connection&quot;)&lt;br /&gt;
	Conn.ConnectionTimeout = 15&lt;br /&gt;
	Conn.CommandTimeout = 30&lt;/p&gt;
&lt;p&gt;	Conn.Open &quot;DBQ=&quot; &amp;amp; Server.MapPath(&quot;yourdb.mdb&quot;)&amp;amp; &quot;;Driver={Microsoft Access Driver (*.mdb)};DriverId=25;MaxBufferSize=8192;Threads=20;&quot;&lt;/p&gt;
&lt;p&gt;	Set SQL = Server.CreateObject(&quot;ADODB.Command&quot;)&lt;br /&gt;
	SQL.ActiveConnection = Conn&lt;br /&gt;
	SQL.CommandText = &quot;SQL Statement here&quot;	SQL.CommandType = 1&lt;/p&gt;
&lt;p&gt;	Set RSOpen = Server.CreateObject(&quot;ADODB.Recordset&quot;)&lt;br /&gt;
	RSOpen.Open SQL, , 0, 1&lt;/p&gt;
&lt;p&gt;I guess if your host supports ASP they probably at least support Access databases and DSN&#039;s so maybe this isn&#039;t the best example.&lt;/p&gt;
&lt;p&gt;Like I said before, there are some areas where a flatfile gets the job done, but it can always be done better with a relational database.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Peter J. Boettcher&lt;/p&gt;
 </description>
     <pubDate>Fri, 17 Mar 2000 13:42:00 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1031404 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031403</link>
    <description> &lt;p&gt;Hi Peter,&lt;/p&gt;
&lt;p&gt;   Yes, redundancy would be gone (ah if only life were so &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;br /&gt;
   However, by size I was thinking more of the Exes, Dlls, etc.  Seems as though as the years go on, everything gets larger (and not necessarily better). &lt;/p&gt;
&lt;p&gt;Re the following:&lt;br /&gt;
&amp;gt;Permisions are a little tricky but with DSN-&amp;gt;less databases you can do alot even when &amp;gt;your host doesn&#039;t support it.&lt;/p&gt;
&lt;p&gt;More info, some examples, please.&lt;/p&gt;
&lt;p&gt;BTW: If interested, I have a client-side javascript text-based database script (Rolodex 3) at my site you might find interesting. &lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;GrassBlade: cut&amp;amp;paste javascript&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 17 Mar 2000 02:10:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1031403 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031402</link>
    <description> &lt;p&gt;Vincent,&lt;/p&gt;
&lt;p&gt;I can&#039;t argue on the cost side since a flatfile is free. As far as size goes, you definately lost that argument. A small database will be smaller in flatfile form, but a larger database will be smaller in a relational database form since you don&#039;t have to save redundant data. For example, say you&#039;re saving A user&#039;s name, favorite color, and favorite car. In a flatfile every row will contain something like:&lt;/p&gt;
&lt;p&gt;Joe Smith, Red, Ferrari&lt;/p&gt;
&lt;p&gt;In a relational database it would contain:&lt;/p&gt;
&lt;p&gt;Joe Smith, 1, 3&lt;/p&gt;
&lt;p&gt;Since I would store colors and cars in seperate tables. Like I said a small database will be smaller in flatfile form, but think about 50,000 rows of data, the relational will be smaller.&lt;/p&gt;
&lt;p&gt;Permisions are a little tricky but with DSN-less databases you can do alot even when your host doesn&#039;t support it.&lt;/p&gt;
&lt;p&gt;I guess there are some areas where a flatfile gets the job done, I just have a hard time thinking that way anymore.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Peter J. Boettcher&lt;/p&gt;
 </description>
     <pubDate>Thu, 16 Mar 2000 21:48:00 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1031402 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031401</link>
    <description> &lt;p&gt;Hi Peter,&lt;/p&gt;
&lt;p&gt;   I agree with you that relational is a beautiful thing. (I was one of the original database reviewers for PC Magazine back in the days when PC Labs was called the Toy Shop.)&lt;br /&gt;
   However, I can think of three off-the-cuff reasons why flatfiles may be more apt.&lt;br /&gt;
   1)Cost&lt;br /&gt;
   2)size restraints (file &amp;amp; server); and,&lt;br /&gt;
   3)permission rights.&lt;br /&gt;
 For example, I have a site on aol (or as someone else put it: Almost OnLine). I do not have the budget for an expensive rdbms. I would run out of my &quot;free&quot; space before even loading the dbms. And, I do not have rights to write to the server.&lt;br /&gt;
   In other words: to a hungry man, even a crumb looks like cake.&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;GrassBlade: cut&amp;amp;paste javascript&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 16 Mar 2000 20:58:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1031401 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031400</link>
    <description> &lt;p&gt;cool, thx for the feedback folks!  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/wink.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;Thumbs up or down ratings of the best and worst ways to make $$$ on the net. &lt;a href=&quot;http://www.birminghamnet.com/search-engines/resources/webmaster_tools/&quot; class=&quot;bb-url&quot;&gt;CLICK 4 CASH!&lt;/a&gt; from Affiliate Programs and Ad Networks&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 16 Mar 2000 18:49:00 +0000</pubDate>
 <dc:creator>fairhousing</dc:creator>
 <guid isPermaLink="false">comment 1031400 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031399</link>
    <description> &lt;p&gt;fairhousing,&lt;/p&gt;
&lt;p&gt;If it&#039;s possible I would stay away from flatfile. Why start off less then perfect technology. After using relational databases for awhile now I couldn&#039;t imagine going back to one big table to hold everything. I guess if you&#039;re just experimenting with something then a flatfile is ok, but if you plan to use this data for anything I at least recommend using an Access database, and a SQL 7.0 or mySQL solution would be even better.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Peter J. Boettcher&lt;/p&gt;
 </description>
     <pubDate>Thu, 16 Mar 2000 13:45:00 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1031399 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/flat-file-vs-mysql#comment-1031398</link>
    <description> &lt;p&gt;No. not 100k, but if you have something over 1 meg then that will slow down the server just a bit using a flat database.&lt;/p&gt;
 </description>
     <pubDate>Thu, 16 Mar 2000 06:47:00 +0000</pubDate>
 <dc:creator>orlando_5</dc:creator>
 <guid isPermaLink="false">comment 1031398 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
