<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018577" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018577</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/how-create-recordset-my-session-variables#comment-1109277</link>
    <description> &lt;p&gt;It&#039;s not much different, you still have to create your recordset:&lt;/p&gt;
&lt;p&gt;Set MyRS = Server.CreateObject(ADODB.RecordSet)&lt;/p&gt;
&lt;p&gt;Then create your fields:&lt;/p&gt;
&lt;p&gt;With MyRS&lt;br /&gt;
     .Fields.Append &quot;FieldOne&quot;, adInteger&lt;br /&gt;
     .Fields.Append &quot;FieldTwo&quot;, adInteger&lt;br /&gt;
End With&lt;/p&gt;
&lt;p&gt;Then populate your fields:&lt;/p&gt;
&lt;p&gt;With MyRS&lt;br /&gt;
     .Open&lt;br /&gt;
     .AddNew&lt;br /&gt;
     .Fields.Item(&quot;FieldOne&quot;) = 64&lt;br /&gt;
     .Fields.Item(&quot;FieldTwo&quot;) = 128&lt;br /&gt;
     .Update&lt;br /&gt;
     .MoveNext&lt;br /&gt;
End With&lt;/p&gt;
&lt;p&gt;Hope that helps. You should consider just passing everything to the sproc and skip creating the recordset if possible.&lt;/p&gt;
 </description>
     <pubDate>Tue, 21 May 2002 22:20:50 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1109277 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
