Error Type: (0x80004005) Unspecified error
Hi Everyone,
I got the following error trying to run an ASP page:
Technical Information (for support personnel)
Error Type:
(0x80004005)
Unspecified error
/chamber/board.asp, line 56
If I use the following code I get no errors:
strSql = "SELECT PORTAL_MBOARD.ID, PORTAL_MBOARD.FIRST, PORTAL_MBOARD.LAST"
strSql = strSql & " FROM " & strMemberTablePrefix & "MBOARD "
set rs = Server.CreateObject("ADODB.Recordset")
rs.open strSql, my_Conn, 3
but, if the first line is replaced by:
strSql = "SELECT PORTAL_MBOARD.ID, PORTAL_MBOARD.FIRST, PORTAL_MBOARD.LAST, PORTAL_MBOARD.POSITION"
it is already not working. The field "POSITION" has the same settings as the other ones (type: TEXT, required: NO. allow zero length: YES)
Any ideas where the problems is coming from?
Thanks.
Wilfred
|