<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1034500" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1034500</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/connecting-database#comment-1203045</link>
    <description> &lt;p&gt;Hello.....&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/nerdy.png&quot; title=&quot;Cool&quot; alt=&quot;Cool&quot; class=&quot;smiley-content&quot; /&gt; &lt;/p&gt;
&lt;p&gt;U can refer to &lt;a href=&quot;http://www.w3schools.com/&quot; class=&quot;bb-url&quot;&gt;http://www.w3schools.com/&lt;/a&gt; site, the ADO section.&lt;br /&gt;
I hope this would be of help to u for database connection.&lt;/p&gt;
&lt;p&gt;---------------------------------------------------------------------------------------------&lt;br /&gt;
SBalan Group&lt;br /&gt;
&lt;a href=&quot;http://www.sbalanprojects.com/&quot; class=&quot;bb-url&quot;&gt;http://www.sbalanprojects.com/&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 27 Jun 2006 12:16:10 +0000</pubDate>
 <dc:creator>construction</dc:creator>
 <guid isPermaLink="false">comment 1203045 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/connecting-database#comment-1201669</link>
    <description> &lt;p&gt;Connecting to an access database on a remote server can prove difficult at the best of times.  There are a number of security measures built into IIS that prevent things like flatfile database being used across servers in an attempt to stop hackers. &lt;/p&gt;
&lt;p&gt;I&#039;m not actually sure if its even possible to access an ms access database across servers without using an ODBC connection.  a DNS-less connection def. won&#039;t do it - altough I can&#039;t say for sure as i&#039;ve never tried.  Just a gut feeling.&lt;/p&gt;
 </description>
     <pubDate>Thu, 08 Jun 2006 11:58:09 +0000</pubDate>
 <dc:creator>Neutron2k</dc:creator>
 <guid isPermaLink="false">comment 1201669 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/connecting-database#comment-1201461</link>
    <description> &lt;p&gt;here&#039;s something to get you started with database connections with ASP. i wrote this in about a minute, so it may have an error or 2. you can find database related code at &lt;a href=&quot;http://www.aspin.com/&quot; class=&quot;bb-url&quot;&gt;http://www.aspin.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;DIM OCONN, FILEPATH, rsProducts&lt;/p&gt;
&lt;p&gt;Const adOpenStatic = 3&lt;/p&gt;
&lt;p&gt;SET OCONN = Server.CreateObject(&quot;ADODB.Connection&quot;)&lt;br /&gt;
SET rsProducts = Server.CreateObject(&quot;ADODB.RecordSet&quot;)&lt;/p&gt;
&lt;p&gt;filePath = &quot;db/products.mdb&quot;&lt;br /&gt;
oConn.Open &quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&quot;  &amp;amp; Server.MapPath(filePath)&#039; &amp;amp; &quot;;Jet OLEDB:Database Password=&quot;&lt;/p&gt;
&lt;p&gt;rsProducts.open  &quot;SELECT * From products ORDER BY PRICE ASC&quot;,OCONN,adOpenStatic&lt;/p&gt;
&lt;p&gt;rsProducts.movefirst&lt;/p&gt;
&lt;p&gt;for i = 1 to 10&lt;br /&gt;
	if rsProducts.eof then exit for&lt;/p&gt;
&lt;p&gt;	rsProducts.Fields(&quot;DESCRIPTION&quot;)	&#039;Access field data&lt;br /&gt;
	rsProducts.movenext&lt;br /&gt;
next&lt;/p&gt;
&lt;p&gt;rsProducts.close&lt;br /&gt;
OCONN=nothing&lt;/p&gt;
 </description>
     <pubDate>Tue, 06 Jun 2006 06:07:08 +0000</pubDate>
 <dc:creator>adjroth</dc:creator>
 <guid isPermaLink="false">comment 1201461 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
