View Single Post
  #2 (permalink)  
Old Aug 1st, 2005, 06:00
Webforumz Staff Webforumz Staff is offline
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
I'd start with changing the SQL statement to

Code: Select all
SQL4 = "select * FROM oitems"
to see if the problem is with the query.

I don't personally use this syntax for opening a recordset
Code: Select all
Set RS4 = Server.CreateObject("ADODB.Recordset") 
RS4.open SQL4, site_content_conn, 3, 3, 1
so maybe someone else will notice if there's a problem with it.

I generally do it with
Code: Select all
set RS4 = site_content_conn.execute(SQL4,,1)
Reply With Quote