<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1014255" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1014255</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Thanks for that</title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082814</link>
    <description> &lt;p&gt;mmm yip I&#039;m going to have to take that option - command line coding...&lt;/p&gt;
&lt;p&gt;thanks for all your help&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
 </description>
     <pubDate>Thu, 24 May 2001 00:02:07 +0000</pubDate>
 <dc:creator>andy4444</dc:creator>
 <guid isPermaLink="false">comment 1082814 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082788</link>
    <description> &lt;p&gt;I didn&#039;t realize you were using the design-time controls, yuck! When I first was learning Interdev I tried these controls but stopped using them after the lack of flexibility and the amount of crap they put into my pages. I don&#039;t even bother installing the script library anymore on any projects I work on.&lt;/p&gt;
&lt;p&gt;My first recommendation would be, don&#039;t use the design-time controls, stick to using your own code. When you say it doesn&#039;t work, what error message are you getting, or is it just not returning any data?&lt;/p&gt;
&lt;p&gt;I&#039;m not sure where you can download a trial version of Interdev, but you can order a trial here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://developerstore.com/devstore/product.asp?productID=7448&quot; class=&quot;bb-url&quot;&gt;http://developerstore.com/devstore/product.asp?productID=7448&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 23 May 2001 13:18:55 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1082788 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>here&#039;s the code of a working model and the non working model</title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082755</link>
    <description> &lt;p&gt;This page(DSNTest.asp, very simple page) uses global.asa to create data connection, and uses Recordset Object from tool box (visually dragged and dropped in Visual Interdev) to create SQL command, however it doesn&#039;t work.&lt;/p&gt;
&lt;p&gt;Here&#039;s the code:&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;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;@ &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Language&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;VBScript &lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
&amp;lt;script id=DebugDirectives runat=server language=javascript&amp;gt;&lt;br /&gt;
// Set these to true to enable debugging or tracing&lt;br /&gt;
@set @debug=false&lt;br /&gt;
@set @trace=false&lt;br /&gt;
&amp;lt;/script&amp;gt;&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; &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039; VI 6.0 Scripting Object Model Enabled &lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&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; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;if &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;StartPageProcessing&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;() &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Then Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;End&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;() &lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&lt;STRONG&gt;DSN Testing&lt;/strong&gt; &lt;/p&gt;
&lt;p&gt;--&amp;gt;&lt;br /&gt;
&amp;lt;script LANGUAGE=&quot;JavaScript&quot; RUNAT=&quot;server&quot;&amp;gt;&lt;br /&gt;
function _initRecordset1()&lt;br /&gt;
{&lt;br /&gt;
	var DBConn = Server.CreateObject(&#039;ADODB.Connection&#039;);&lt;br /&gt;
	DBConn.ConnectionTimeout = Application(&#039;Connection1_ConnectionTimeout&#039;);&lt;br /&gt;
	DBConn.CommandTimeout = Application(&#039;Connection1_CommandTimeout&#039;);&lt;br /&gt;
	DBConn.CursorLocation = Application(&#039;Connection1_CursorLocation&#039;);&lt;br /&gt;
	DBConn.Open(Application(&#039;Connection1_ConnectionString&#039;), Application(&#039;Connection1_RuntimeUserName&#039;), Application(&#039;Connection1_RuntimePassword&#039;));&lt;br /&gt;
	var cmdTmp = Server.CreateObject(&#039;ADODB.Command&#039;);&lt;br /&gt;
	var rsTmp = Server.CreateObject(&#039;ADODB.Recordset&#039;);&lt;br /&gt;
	cmdTmp.ActiveConnection = DBConn;&lt;br /&gt;
	rsTmp.Source = cmdTmp;&lt;br /&gt;
	cmdTmp.CommandType = 2;&lt;br /&gt;
	cmdTmp.CommandTimeout = 10;&lt;br /&gt;
	cmdTmp.CommandText = &#039;&quot;dbo&quot;.&quot;WebSite&quot;&#039;;&lt;br /&gt;
	rsTmp.CacheSize = 10;&lt;br /&gt;
	rsTmp.CursorType = 3;&lt;br /&gt;
	rsTmp.CursorLocation = 3;&lt;br /&gt;
	rsTmp.LockType = 3;&lt;br /&gt;
	Recordset1.setRecordSource(rsTmp);&lt;br /&gt;
	Recordset1.open();&lt;br /&gt;
	if (thisPage.getState(&#039;pb_Recordset1&#039;) != null)&lt;br /&gt;
		Recordset1.setBookmark(thisPage.getState(&#039;pb_Recordset1&#039;));&lt;br /&gt;
}&lt;br /&gt;
function _Recordset1_ctor()&lt;br /&gt;
{&lt;br /&gt;
	CreateRecordset(&#039;Recordset1&#039;, _initRecordset1, null);&lt;br /&gt;
}&lt;br /&gt;
function _Recordset1_dtor()&lt;br /&gt;
{&lt;br /&gt;
	Recordset1._preserveState();&lt;br /&gt;
	thisPage.setState(&#039;pb_Recordset1&#039;, Recordset1.getBookmark());&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/script&amp;gt;&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; &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039; VI 6.0 Scripting Object Model Enabled &lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&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; EndPageProcessing&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;() &lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;This page uses command line to set up data connection, and it works fine.&lt;/p&gt;
&lt;p&gt;here&#039;s the code : &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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DIM Recordset1&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newSQL&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 USERS&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;set Recordset1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Server&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;CreateObject&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;ADODB.RecordSet&quot;&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;Recordset1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;ActiveConnection&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;DSN=dsnname;UID=username;pwd=password&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Recordset1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Open newSQL&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;table border=0 width=100% cellspacing=0 cellpadding=2 align=left&amp;gt;&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;Do &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Until Recordset1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;EOF&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strUsername &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Recordset1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;username&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;tr&amp;gt;&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;td width=100% nowrap&amp;gt;&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write strUsername&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;/td&amp;gt;&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;/tr&amp;gt;&quot;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Recordset1&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;moveNext&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; loop&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Write &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;/table&amp;gt;&quot;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;	DSN Testing&lt;/p&gt;
&lt;p&gt;Please let me know your thoughts - or do you know where I can get a downloadable trial version of visual interdev so that I can play with this code?&lt;/p&gt;
&lt;p&gt;thanks again for your persevering help.&lt;/p&gt;
 </description>
     <pubDate>Tue, 22 May 2001 22:50:08 +0000</pubDate>
 <dc:creator>andy4444</dc:creator>
 <guid isPermaLink="false">comment 1082755 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082737</link>
    <description> &lt;p&gt;Unless you&#039;re referencing the ADO library specifically (by version), then the ADO version does not matter. Having said that, there are some features that are only available in the newer releases.&lt;/p&gt;
&lt;p&gt;Maybe if you could post the code from your asp that is not working (remember to take out the username &amp;amp; password)&lt;/p&gt;
 </description>
     <pubDate>Tue, 22 May 2001 12:41:21 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1082737 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Snr admin has a differing opinion</title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082550</link>
    <description> &lt;p&gt;HI there&lt;/p&gt;
&lt;p&gt;this is what I got from our Snr admin :&lt;br /&gt;
I have spoken with a senior admin regarding this issue and I believe the&lt;br /&gt;
version does matter. Version 2.5 is not backwards compatible and that is&lt;br /&gt;
most likely why Visual Interdev doesn&#039;t work properly. The reason we do not&lt;br /&gt;
use version 2.5 ADO is because it breaks perl support on the server and&lt;br /&gt;
there is a security problem with 2.5 that is not present in 2.1.&lt;/p&gt;
&lt;p&gt;let me know your thoughts please&lt;/p&gt;
&lt;p&gt;cheers&lt;/p&gt;
 </description>
     <pubDate>Thu, 17 May 2001 01:56:23 +0000</pubDate>
 <dc:creator>andy4444</dc:creator>
 <guid isPermaLink="false">comment 1082550 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082227</link>
    <description> &lt;p&gt;The first thing I would check before anything is to make sure you have a system DSN installed on the web server. So go into the Data Sources area in the control panel and select System Data Sources and make sure there is one called &quot;Databook1&quot;. From what your Admin says it sounds like the DSN he setup is for an Access database, you need one for a SQL database.&lt;/p&gt;
&lt;p&gt;If that all checks out ok then I&#039;m not sure what the problem is. The ADO version shouldn&#039;t matter since the web app runs on the server (if working in master mode).&lt;/p&gt;
&lt;p&gt;Did you use the built in &quot;Add Data Connection&quot; in Interdev or did you code the connection yourself?&lt;/p&gt;
 </description>
     <pubDate>Thu, 10 May 2001 12:53:28 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1082227 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>a long story......</title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082215</link>
    <description> &lt;p&gt;Ok from the begginning - i have a customer who wants to use visual interdev to develop a front end accessing our SQL server ( wich is on a seperate server), and we only support DSN connections to it.&lt;/p&gt;
&lt;p&gt;So my customer is using a DSN connection within the global.asa ( wich I never thought was possible - or at least I always thought the global.asa was used to enable a connectionless connection). It doesn&#039;t work and we can&#039;t work out why not.&lt;/p&gt;
&lt;p&gt;Code from the global.asa :&lt;/p&gt;
&lt;p&gt; Application(&quot;Connection1_ConnectionString&quot;) = &quot;DSN=databook1;User Id=userid;PASSWORD=password;UID=databook_admin;APP=Microsoft Development Environment;DATABASE=databookconz&quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://205.178.180.35/databook.co.nz/DSNTest1.asp&quot; class=&quot;bb-url&quot;&gt;http://205.178.180.35/databook.co.nz/DSNTest1.asp&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://205.178.180.35/databook.co.nz/DSNTest.asp&quot; class=&quot;bb-url&quot;&gt;http://205.178.180.35/databook.co.nz/DSNTest.asp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The page (DSNTest1.asp),uses command line to set up data connection, and it works fine. The other page(DSNTest.asp, very simple page) uses global.asa to create data connection, and uses Recordset Object from tool box (visually dragged and dropped in Visual Interdev) to create SQL command, however it doesn&#039;t work.&lt;/p&gt;
&lt;p&gt;We can&#039;t work out why not - our Admin simply says :&lt;br /&gt;
The ADO connection is not supported for DSN connections to the SQL servers, only for access databases.&lt;/p&gt;
&lt;p&gt;and my reasoning is - well NT has ADO loaded in by default, why can&#039; you use it - unless it&#039;s been disabled somehow on the sql server or it&#039;s the incorrect version - why couldn&#039;t it work?&lt;/p&gt;
&lt;p&gt;Please please let me know you thoughts on this one ?&lt;/p&gt;
&lt;p&gt;Thanks a million so far&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[Mod Edit: best not to post userid and passwords]&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 09 May 2001 23:18:10 +0000</pubDate>
 <dc:creator>andy4444</dc:creator>
 <guid isPermaLink="false">comment 1082215 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/visual-interdev-6-and-ado-version#comment-1082186</link>
    <description> &lt;p&gt;When you say &quot;create a DSN connection via global.asa&quot; do you mean you&#039;re storing the connection string in a application variable, like:&lt;/p&gt;
&lt;p&gt;Application(&quot;DB_CONN&quot;) = &quot;DSN=dsn_conn;UID=user;PWD=pasword&quot;&lt;/p&gt;
&lt;p&gt;Or do you mean you&#039;re actually storing the whole connection/command in a session or application variable? If you&#039;re doing this then stop, you&#039;re defeating the whole purpose of connection pooling and multi-threading. Storing the connection string in an application or session variable is fine, but storing the actual database connection is not.&lt;/p&gt;
&lt;p&gt;Or do you mean you&#039;re creating a DSN-less connection?&lt;/p&gt;
&lt;p&gt;Maybe you can elaborate as to exactly what you&#039;re doing.&lt;/p&gt;
&lt;p&gt;In regards to the version of mdac that VI needs, originally I think it was 2.1. Though with later service packs that might have changed.&lt;/p&gt;
 </description>
     <pubDate>Wed, 09 May 2001 13:16:44 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1082186 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
