//  home   //  advanced search   //  news   //  categories   //  sql build chart   //  downloads   //  statistics
 ASP FAQ 
Home
ASP FAQ Tutorials

   8000XXXX Errors
   ASP.NET 2.0
   Classic ASP 1.0
   Databases
      Access DB & ADO
      General SQL Server & Access Articles
      MySQL
      Other Articles
      Schema Tutorials
      Sql Server 2000
      Sql Server 2005
   General Concepts
   Search Engine Optimization (SEO)

Contact Us
Site Map

Search

Web
aspfaq.com
tutorials.aspfaq.com
databases.aspfaq.com

ASP FAQ Tutorials :: Databases :: Other Articles :: When should I use CreateObject to create my recordset objects?


When should I use CreateObject to create my recordset objects?

A quick note: NEVER store a recordset in the session object. For a discussion of this see: 
 
    http://www.microsoft.com/mind/1198/ado/a... (tip #6) 
    KB #176056 
 
Most data access tasks can be implemented by using the execute method of the connection object. Why would we want to do this? Well, for one, there is extra overhead in using a recordset object for UPDATE and INSERT functionality. This is because the provider has to translate your code into an equivalent T-SQL statement anyway (the database itself has no knowledge of "addNew" and similar methods). Also, there are many dangerous locks associated with recordsets... most of which are not necessary (especially when performing an INSERT or UPDATE). Your goal should be to get in, tweak your data, and get out as quickly as possible. Using direct statements is the quickest way to do this, since there is much less overhead and no locks associated with your activity. 
 
Another benefit of using an INSERT or UPDATE statement is that it is much easier to debug. You can change conn.execute(sql) to response.write(sql) and immediately see why your statement is throwing an error. With a multi-line transaction using a recordset object, it is translated to an INSERT or UPDATE statement (inefficiently!) on the DB side, so there is no straightforward way to trap errors at the code level. 
 
To use the connection object, simply design a transact-SQL statement for the action you want to use and implement it like so: 
 
<% 
    sql = "INSERT INTO <table> (fields) VALUES (values)" 
    set conn = CreateObject("ADODB.Connection") 
    conn.open "<connection string>" 
    conn.execute sql, , 129 
    ' 129 is the constant for adExecuteNoRecords + adCmdText 
    ... 
%>
 
No recordset object is needed for this, and the 129 constant can be used, because there is no need to return data (adExecuteRecords tells the provider that it doesn't need to worry about sending data back upon execution of the query; adCmdText prevents the provider from having to determine at run-time what type of query it is). If there were a need for returned data in the form of a recordset, we would do it like so: 
 
<% 
    sql = "SELECT field1, field2 FROM <table>" 
    set conn = CreateObject("ADODB.Connection") 
    conn.open "<connection string>" 
    set rs = conn.execute(sql) 
    ... 
%>
 
The command object is also unnecessary overhead that does little, aside from bloat code, create confusion, and require constant declaration (ADOVBS.INC = bad; see Article #2112 for more details). Even for executing stored procedures, you can do it with the connection object alone: 
 
<% 
    sql = "EXEC SP_doSomething @param1=1, @param2='" & var & "'" 
    set conn = CreateObject("ADODB.Connection") 
    conn.open "<connection string>" 
    set rs = conn.execute(sql) 
    ... 
%>
 
Bob Barrows prefers this short cut: 
 
<% 
    conn.SP_doSomething 1, var 
%>
 
Even a recordcount can be obtained without having to create an entire instance of an object (see Article #2193 for more information). 
 
There are a few exceptions to this rule, of course. When certain ADO methods need to be used, or the cursorType needs to be changed for any other reason (e.g. for paging through a resultset — see Article #2120), it may be necessary to use a recordset object. But for the record, I manage more than a handful of ASP applications, all of which use SQL Server, and I don't have a single ASP page in use that contains the "ADODB.Recordset" progID.

Related Articles

How do I build a query with optional parameters?
How do I calculate the median in a table?
How do I create a store locator feature?
How do I deal with MEMO, TEXT, HYPERLINK, and CURRENCY columns?
How do I deal with multiple resultsets from a stored procedure?
How do I debug my SQL statements?
How do I determine if a column exists in a given table?
How do I enable or disable connection pooling?
How do I enumerate through the DSNs on a machine?
How do I find a stored procedure containing <text>?
How do I get a list of Access tables and their row counts?
How do I get the latest version of the JET OLEDB drivers?
How do I handle alphabetic paging?
How do I handle BIT / BOOLEAN columns?
How do I handle error checking in a stored procedure?
How do I ignore common words in a search?
How do I page through a recordset?
How do I present one-to-many relationships in my ASP page?
How do I prevent duplicates in a table?
How do I prevent my ASP pages from waiting for backend activity?
How do I prevent NULLs in my database from mucking up my HTML?
How do I protect my Access database (MDB file)?
How do I protect my stored procedure code?
How do I protect myself against the W32.Slammer worm?
How do I remove duplicates from a table?
How do I rename a column?
How do I retrieve a random record?
How do I return row numbers with my query?
How do I send a database query to a text file?
How do I simulate an array inside a stored procedure?
How do I solve 'Could not find installable ISAM' errors?
How do I solve 'Operation must use an updateable query' errors?
How do I temporarily disable a trigger?
How do I use a SELECT list alias in the WHERE or GROUP BY clause?
How do I use a variable in an ORDER BY clause?
Should I index my database table(s), and if so, how?
Should I store images in the database or the filesystem?
Should I use a #temp table or a @table variable?
Should I use a view, a stored procedure, or a user-defined function?
Should I use recordset iteration, or GetRows(), or GetString()?
What are all these dt_ stored procedures, and can I remove them?
What are the limitations of MS Access?
What are the limitations of MSDE?
What are the valid styles for converting datetime to string?
What datatype should I use for my character-based database columns?
What datatype should I use for numeric columns?
What does "ambiguous column name" mean?
What is this 'Multiple-step OLE DB' error?
What is wrong with 'SELECT *'?
What naming convention should I use in my database?
What should I choose for my primary key?
What should my connection string look like?
Where can I get this 'Books Online' documentation?
Where do I get MSDE?
Which database platform should I use for my ASP application?
Which tool should I use: Enterprise Manager or Query Analyzer?
Why are there gaps in my IDENTITY / AUTOINCREMENT column?
Why can I not 'open a database created with a previous version...'?
Why can't I access a database or text file on another server?
Why can't I use the TOP keyword?
Why do I get 'Argument data type text is invalid for argument [...]'?
Why do I get 'Not enough space on temporary disk' errors?
Why does ASP give me ActiveX errors when connecting to a database?
Should I use COALESCE() or ISNULL()?
Where can I get basic info about using stored procedures?

 

 


Created: 7/9/2000 | Last Updated: 5/2/2004 | broken links | helpful | not helpful | statistics
© Copyright 2006, UBR, Inc. All Rights Reserved. (91)

 

Copyright 1999-2006, All rights reserved.
Finding content
Finding content.  An error has occured...