<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1019849" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1019849</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121320</link>
    <description> &lt;p&gt;Dumb question, but how do I know which database I need to download from mysql.com?&lt;/p&gt;
&lt;p&gt;I run Windows 98.&lt;/p&gt;
&lt;p&gt;Thanks&lt;br /&gt;
Bryan&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 15:49:16 +0000</pubDate>
 <dc:creator>jag5311</dc:creator>
 <guid isPermaLink="false">comment 1121320 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121317</link>
    <description> &lt;p&gt;Thank you so much, finally a clear explanation.  I bought Ben Forta&#039;s Learn MYSQL in 10 minutes, and couldn&#039;t figure out where I could start preparing a database&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 15:43:53 +0000</pubDate>
 <dc:creator>jag5311</dc:creator>
 <guid isPermaLink="false">comment 1121317 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121296</link>
    <description> &lt;p&gt;I think of Access more of a desktop database for individual use.  But, of course, people do use it in a larger scale.&lt;/p&gt;
&lt;p&gt;&quot;&lt;a href=&quot;http://www.mysql.com&quot; class=&quot;bb-url&quot;&gt;MySQL&lt;/a&gt; is the world&#039;s most popular Open Source Database, designed for speed, power and precision in mission critical, heavy load use.&quot; -- from the mySQL site.  Something I like to brag about: &lt;a href=&quot;http://www.mysql.com/news/article-51.html&quot; class=&quot;bb-url&quot;&gt;NASA switches from Oracle to MySQL&lt;/a&gt; &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;
&lt;p&gt;(SQL) &quot;&lt;a href=&quot;http://www.microsoft.com/catalog/display.asp?subid=22&amp;amp;site=10145&quot; class=&quot;bb-url&quot;&gt;Microsoft SQL Server&lt;/a&gt; ... is the complete database and analysis offering for rapidly delivering the next generation of scalable e-commerce, line-of-business and data warehousing solutions.&quot; -- from the Microsoft site.&lt;/p&gt;
&lt;p&gt;You really can&#039;t compare Access to the other large scale DBs.  Access uses non-standard datatypes, contains the whole DB in one file, incorporates &#039;forms&#039;, has a really funky format for queries, and yadda yadda yadda.  &lt;/p&gt;
&lt;p&gt;Something else which distinguishes Access... one file = one database.&lt;br /&gt;
Both mySQL and MS SQL are server.  And each server can contain many databases.  Just as an IIS or Apache server can contain many VirtualHosts.&lt;/p&gt;
&lt;p&gt;Also, mySQL and MS SQL have no concept of &#039;forms&#039;.  Real database servers aren&#039;t used for formatting/presenting data.  You do that yourself using whichever technology you use to query the DB.&lt;/p&gt;
&lt;p&gt;MS SQL and mySQL aren&#039;t single files that you manipulate with managing software.  Rather, their services (for windows) or servers (for unix), which are running continuously (similar to IIS or Apache).&lt;/p&gt;
&lt;p&gt;To administer a MS SQL server, you run a program (forgot the name) on a client and connect to a SQL server.  It has a full GUI interface which allows you to administer everything.&lt;/p&gt;
&lt;p&gt;To administer a mySQL server, you typically log into a telnet or SSH session.  Then run `mysql -u root -p`.  This will give you a mySQL prompt which will accept written sql commands.  mySQL doesn&#039;t come with a GUI.  But you can use the popular web based GUI called phpMyAdmin.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 08:11:19 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1121296 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121291</link>
    <description> &lt;p&gt;r u talking about phpmyadmin?&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 07:31:32 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1121291 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121288</link>
    <description> &lt;p&gt;I got a new question.  This is a dumb one, but I am completely lost on it.  I understand one way of connecting with databases Via ASP, PHP, or CM is through Access database files, I believe .mdb or something extensions.  I have heard though, that this can cause problems since the file must be opened online (or something) and sometimes can be corrupt or damaged, especially in a database of 1000&#039;s of items.  There is also the way of SQL or MYSQL (not sure the difference) but how is that put together.  Is there a program that allows you to manage your queries/tables/forms ect.., or is it done using a standard text file.  This is where I have gotten confused.  With Access, you create your mdb file, upload it, tell your .php,.cm, .asp file to located the particular database file, and match the criteria.  What is the NON-ACCESS way.&lt;/p&gt;
&lt;p&gt;Thanks in advanced.  I am just thirsty for knowledge:)&lt;/p&gt;
&lt;p&gt;Bryan&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 06:45:07 +0000</pubDate>
 <dc:creator>jag5311</dc:creator>
 <guid isPermaLink="false">comment 1121288 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121224</link>
    <description> &lt;p&gt;Oh no, what have I started! &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;It can also be done with a DSN less connection.  Just declare the DSN in the application.cfm file so it can be called on any page like so:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;cfset Get= &amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp; Driver={Microsoft Access Driver (*.mdb)};&lt;br /&gt;&amp;nbsp;&amp;nbsp; Dbq=MyDatabase.mdb;&lt;br /&gt;&amp;nbsp;&amp;nbsp; DefaultDir=D:\path2files\;&lt;br /&gt;&amp;nbsp;&amp;nbsp; Uid=Admin;&lt;br /&gt;&amp;nbsp;&amp;nbsp; Pwd=Password;&amp;quot;&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;The CFQUERY section changes slightly to :&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;cfquery name=&amp;quot;GetExample&amp;quot; connectstring=&amp;quot;#Get#&amp;quot; dbtype=&amp;quot;DYNAMIC&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; SELECT *&lt;br /&gt;&amp;nbsp; FROM TableName&lt;br /&gt;&amp;nbsp; WHERE ProductID = #ProductID#&lt;br /&gt;&amp;lt;/cfquery&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;I think at the end of the day, you should use which ever language you feel most comfortable with but I am still of the opinion that CF is easier to learn....&lt;/p&gt;
&lt;p&gt;So there.... &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>Wed, 11 Dec 2002 09:14:26 +0000</pubDate>
 <dc:creator>openmind</dc:creator>
 <guid isPermaLink="false">comment 1121224 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121212</link>
    <description> &lt;p&gt;When using DSN connections, you refer to the Database by using a pre-determined name.  The computer (or server) then chesks it&#039;s tables for the specific connection info (host, user, pass).&lt;/p&gt;
&lt;p&gt;On WinXP:&lt;br /&gt;
Start &amp;gt; Settings &amp;gt; Control Panel &amp;gt; Administrative Tools &amp;gt; Data Sources (ODBC)&lt;br /&gt;
The first tab is &quot;User DSN&quot;.  Click &quot;Add...&quot;, pick your DB type, then specify the connection info.&lt;/p&gt;
&lt;p&gt;DSNless connections is just using a standard connection (similar to what is normally done in PHP).  The only language I&#039;ve used both methods in is ASP.  I briefly tried using DSN with Java, but gave up before I got it working.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 04:54:51 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1121212 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121197</link>
    <description> &lt;p&gt;What is the difference betweeen DSN and DSNless&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 03:41:40 +0000</pubDate>
 <dc:creator>jag5311</dc:creator>
 <guid isPermaLink="false">comment 1121197 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121184</link>
    <description> &lt;p&gt;I&#039;m guessing Flipper was using a DSN connection (Data Source Name).  I&#039;ve always hated DSN connections.  When I program in ASP with SQL server, I always use DSNless connections.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 02:07:40 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1121184 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/difference-asp-php-cf-and-more#comment-1121177</link>
    <description> &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;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;//Select&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$output &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_fetch_assoc&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_query&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT * FROM tablename WHERE productid = &#039;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$productid&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039; \&quot;));&lt;br /&gt;echo \&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$output&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Name&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$output&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Model&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$output&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;color&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;\&quot;;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
That works for MySQL and PHP... and that assumes you are connected to the DB... does CF require a connection? like &lt;strong&gt;mysql_connect()&lt;/strong&gt; in PHP?&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 00:32:42 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1121177 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
