<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018958" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018958</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113691</link>
    <description> &lt;p&gt;congrats, and thanks for sharing the outcome&lt;/p&gt;
 </description>
     <pubDate>Fri, 06 Sep 2002 23:38:54 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1113691 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113683</link>
    <description> &lt;p&gt;Way to go Mike! Doesn&#039;t really matter how you beat a problem, as long as you beat it.&lt;/p&gt;
 </description>
     <pubDate>Fri, 06 Sep 2002 20:05:01 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1113683 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113680</link>
    <description> &lt;p&gt;I just wanted to update everyone who tried to help me.  I finally got my data into a mySQL table.  I discovered the difference between my cvs output and a sample dump file was that the dump file had spaces following all the commas, while my cvs file did not.  I just ran a find and replace all, for all commas to a comma with a space after it.  I then saved it and changed the file extention from .cvs to .txt.  It was a back-@ss way to do it but it worked!&lt;/p&gt;
&lt;p&gt;&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>Fri, 06 Sep 2002 19:13:34 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1113680 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113298</link>
    <description> &lt;p&gt;the code Rob showed is included in a .php page &lt;/p&gt;
&lt;p&gt;phpMyAdmin is real easy to use, but as a wise Mod here mentioned (Mairving) it&#039;s better to learn the web page method, using INSERT, UPDATE, ...&lt;br /&gt;
At first it all looks hard but do it a couple of times and its quite easy. then once you know the basics of written MYSQL then go back to phpMyAdmin&lt;br /&gt;
Kevin Yank has a few tutorials around the place, even on mysql.com itself&lt;/p&gt;
 </description>
     <pubDate>Sun, 01 Sep 2002 00:15:09 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1113298 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113291</link>
    <description> &lt;p&gt;Sorry for my novice-ness.  Your suggestion sounds promising but what do I do with it?  (other than changing datafile.cvs to whatever I named it)  Is this code to place in a php page?  Or is this some command code to use within phpMyAdmin?  And what&#039;s that coldata stuff? &lt;/p&gt;
&lt;p&gt;Sorry but nearly all of my knowledge is in simple .shtml stuff.  Maybe this project is a little beyond my current capabilities &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/confused.png&quot; title=&quot;Confused&quot; alt=&quot;Confused&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 31 Aug 2002 19:07:21 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1113291 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113278</link>
    <description> &lt;p&gt;why not drop the import as file idea, save the files as csv in excel, and do something like this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;$fp &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;fopen&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;datafile.csv&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;r&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;while(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$coldata &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;fgetcsv&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$fp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;10000&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$thequery &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= \&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;INSERT INTO mytable VALUES(&#039;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$coldata&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;,&#039;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$coldata&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;,&#039;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$coldata&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;,&#039;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$coldata&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;)\&quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mysql_query(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$thequery&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;);&lt;br /&gt;}&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 31 Aug 2002 13:28:06 +0000</pubDate>
 <dc:creator>ROB</dc:creator>
 <guid isPermaLink="false">comment 1113278 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113215</link>
    <description> &lt;p&gt;my first time i had the rows but no content at all.&lt;/p&gt;
&lt;p&gt;check your quotes and commas, are you missing any and lookout for things like: &quot;Hi, I&#039;m Bob&quot;  should be &quot;Hi, I\&#039;m Bob&quot; .. very easy oversight to make.&lt;br /&gt;
Also were the contents in the text file correct with db tables?, if you declare notnull and upload/insert as null(empty) you&#039;ll get out of align. hope this hasnt confused you.&lt;/p&gt;
&lt;p&gt;an example of what i use:&lt;br /&gt;
use dbname;&lt;/p&gt;
&lt;p&gt;insert into dbname values&lt;br /&gt;
(null, &quot;n is after m&quot;, &quot;&quot;, &quot;318&quot;, null),&lt;br /&gt;
.... &lt;/p&gt;
&lt;p&gt;etc etc, dbname being your database name, the first null is the auto increment number, n is after m is just some rubbish i put there &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; but its the content, the one after is a blank field which coulc or could not contain data, but if i missed this out the next number would move over one and would be one short so throws the whole thing out of whack.&lt;br /&gt;
[note]Hope his make sense, still on first coffee of the morning[/note]&lt;/p&gt;
 </description>
     <pubDate>Fri, 30 Aug 2002 22:50:32 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1113215 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113212</link>
    <description> &lt;p&gt;Hey, I made some progress!  After I created a table within the database, I used the link &quot;Insert data from a textfile into table&quot; which did not give me errors.  I said that it successfully entered 176 rows, which is the correct number of rows in my text file.&lt;/p&gt;
&lt;p&gt;However when I then hit &quot;browse&quot; it shows me all of each row&#039;s column data showing up in the first field of the table  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 30 Aug 2002 22:12:01 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1113212 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113211</link>
    <description> &lt;p&gt;The info in the link looks good but I don&#039;t understand enough of the basics to know what it means.  The problem is that I don&#039;t even know where to start &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/confused.png&quot; title=&quot;Confused&quot; alt=&quot;Confused&quot; class=&quot;smiley-content&quot; /&gt; I&#039;m completely new to mySQL.  I guess I should begin with what I was doing, then maybe somebody could shout out at me that I&#039;m going about it all wrong.&lt;/p&gt;
&lt;p&gt;I tried many formats, all of which say &quot;You have an error in your SQL syntax near xxxx at line 1&quot;.  I see in the phpMyAdmin that it says &quot;Or Location of the textfile.&quot; so I&#039;ve been concentrating on exporting the .xls file as a text file.&lt;/p&gt;
&lt;p&gt;I created a database first and tried to &quot;import&quot; my data but it didn&#039;t work.  So I figured that maybe I need to create a table first, so I created a table with 10 fields and tried to import using the same method (&quot;Or Location of the textfile.&quot;) but that didn&#039;t help.&lt;/p&gt;
 </description>
     <pubDate>Fri, 30 Aug 2002 22:00:45 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1113211 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/should-i-use-flatfile-or-mysql#comment-1113207</link>
    <description> &lt;p&gt;What format did you save it as in Excel? Tab-delimited text?&lt;/p&gt;
&lt;p&gt;You shouldn&#039;t have any problems importing that text file into mySQL. Maybe try bypassing phpMyAdmin, see this link for more info: &lt;a href=&quot;http://www.mysql.com/doc/en/mysqlimport.html&quot; class=&quot;bb-url&quot;&gt;http://www.mysql.com/doc/en/mysqlimport.html&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 30 Aug 2002 19:19:06 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1113207 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
