Author |
Topic |
|
merdok
Junior Member
United Kingdom
129 Posts |
Posted - 06 May 2002 : 08:08:27
|
Hi guys,
I'm making (well trying to make) an application for a client of mine, but I'm getting several errors on the following pages ------------------------------------------------- http://knk.ebizid.co.uk/adduser.txt
ADODB.Command error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/catalogue/admin/adduser.asp, line 107
------------------------------------------------- http://knk.ebizid.co.uk/catalogueList.txt
ADODB.Recordset error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/catalogue/catalogueList.asp, line 44
------------------------------------------------- http://knk.ebizid.co.uk/thanks.txt
Microsoft VBScript runtime error '800a01fb'
An exception occurred: 'Upload.Save'
/catalogue/admin/thanks.asp, line 3
------------------------------------------------- To see the pages in action go to knk.ebizid.co.uk/catalogue and log in using un: alexward pw: 123456
Please help guys I dont know what to do and the deadline is today!!!
--------------------- Visit the entertainment system: http://www.filteredreality.co.uk |
|
es4725
Junior Member
205 Posts |
Posted - 06 May 2002 : 11:31:15
|
where do you get this error? - I haven't gotten one...
*EDIT* Just Found the error. It may have something to do with there being no records. If not that, check to make sure your connection string is correct, and that any fields you called for are the same type you say they are in the page. I'm sure others can be of more help */EDIT*
Edited by - es4725 on 06 May 2002 11:33:51 |
|
|
redbrad0
Advanced Member
USA
3725 Posts |
Posted - 06 May 2002 : 23:34:01
|
quote:
ADODB.Command error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/catalogue/admin/adduser.asp, line 107
please post the code around line 107, maybe like 97 - 110 so we can see whats going on. if your trying to do database paging the you probley dont have any of the defaults set.
Brad Web Hosting with SQL Server @ $24.95 per month
|
|
|
merdok
Junior Member
United Kingdom
129 Posts |
Posted - 08 May 2002 : 07:48:52
|
here you go
quote: If (i <> LBound(MM_fields)) Then MM_tableValues = MM_tableValues & "," MM_dbValues = MM_dbValues & "," End if MM_tableValues = MM_tableValues & MM_columns(i) MM_dbValues = MM_dbValues & FormVal Next MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"
If (Not MM_abortEdit) Then ' execute the insert Set MM_editCmd = Server.CreateObject("ADODB.Command") MM_editCmd.ActiveConnection = MM_editConnection MM_editCmd.CommandText = MM_editQuery MM_editCmd.Execute MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then Response.Redirect(MM_editRedirectUrl) End If End If
End If %>
--------------------- Visit the entertainment system: http://www.filteredreality.co.uk |
|
|
|
Topic |
|