<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1020949" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1020949</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128901</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by mairving &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;Varchar is a variable character field. Which means that the field can contain letters and/or numbers and it is variable in size so it saves some database space.&lt;br /&gt;
Char is similar except that it doesn&#039;t save database space.&lt;br /&gt;
Int is for Integer or a whole number.&lt;br /&gt;
Null means that the field doesn&#039;t have to have a value.&lt;br /&gt;
Not Null means that the field must contain a value.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mysql.com/doc/en/Column_types.html&quot; class=&quot;bb-url&quot;&gt;Here&lt;/a&gt; is a whole list of column types. &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Thanks for that &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;
 </description>
     <pubDate>Thu, 10 Apr 2003 05:49:01 +0000</pubDate>
 <dc:creator>nuk3</dc:creator>
 <guid isPermaLink="false">comment 1128901 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128871</link>
    <description> &lt;p&gt;i figured it out...thanks&lt;/p&gt;
 </description>
     <pubDate>Wed, 09 Apr 2003 15:40:19 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1128871 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128856</link>
    <description> &lt;p&gt;Varchar is a variable character field. Which means that the field can contain letters and/or numbers and it is variable in size so it saves some database space.&lt;br /&gt;
Char is similar except that it doesn&#039;t save database space.&lt;br /&gt;
Int is for Integer or a whole number.&lt;br /&gt;
Null means that the field doesn&#039;t have to have a value.&lt;br /&gt;
Not Null means that the field must contain a value.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mysql.com/doc/en/Column_types.html&quot; class=&quot;bb-url&quot;&gt;Here&lt;/a&gt; is a whole list of column types.&lt;/p&gt;
 </description>
     <pubDate>Wed, 09 Apr 2003 12:00:08 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1128856 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128852</link>
    <description> &lt;p&gt;While this topic is here, what is null, not-null, varchar, int and all this other stuff? What exactly does each one mean? Thanks..&lt;/p&gt;
 </description>
     <pubDate>Wed, 09 Apr 2003 08:52:45 +0000</pubDate>
 <dc:creator>nuk3</dc:creator>
 <guid isPermaLink="false">comment 1128852 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128827</link>
    <description> &lt;p&gt;u_id - small int 4 auto increment primary index (adds to bottom of list) 4 can go up to 9999 if you want more make it 5 or 6&lt;br /&gt;
u_name - varchar 15 (not many names are longer than 15 but can be whatever)&lt;br /&gt;
u_email - varchar 20 (agin not many over 20 but can be anything)&lt;/p&gt;
&lt;p&gt;there are some reserved words so if it says something like it wasn&#039;t acceptable add a extra letter or underscore.&lt;/p&gt;
&lt;p&gt;many ways to do it&lt;/p&gt;
 </description>
     <pubDate>Tue, 08 Apr 2003 23:59:16 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1128827 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128792</link>
    <description> &lt;p&gt;everything...i dont know what type or how to name...like i  put in &quot;name&quot; as the name for the first one, and it said it wasnt acceptable...&lt;/p&gt;
&lt;p&gt;they are plain text...2 fields: 1 name, 1 email address...i want each different entry to add itself to the db, and not overwrite the previous ones...so what are the different things i need to change for each field...thanks&lt;/p&gt;
 </description>
     <pubDate>Tue, 08 Apr 2003 15:26:49 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1128792 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/creating-db#comment-1128757</link>
    <description> &lt;p&gt;How to name the fields? I think everyone has different methods. I usually name them by the tablename_fieldname. An id field would be tablename_id.&lt;/p&gt;
&lt;p&gt;Is this what you are talking about or are you also talking about what type of field, text, varchar, date, int, etc, to name them. Anything greater than 255 characters should be a text field. Some common mistakes are making fields like phone numbers and zip codes int fields. This doesn&#039;t work if you try to put the - in phone or zip fields.&lt;/p&gt;
 </description>
     <pubDate>Tue, 08 Apr 2003 12:09:20 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1128757 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
