Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. /changeprofile.asp, line 44
Mainly I am asking if someone can look at a small portion of code to see if there are any obvious problems for use with mysql??perhaps with the way dates are inserted?? Code:
I've got a page that users of my website are sent to when they log in, and one part of it shows their friends (think myspace). The page works fine if the user has one friend, but it seems that if they have more than one then i get the "Operation not allowed" error.
I won't post the whole page because there's about 750 lines of it, but here's the code that gets the friends images from a mysql db and then shrinks them (if necessary) and puts each image into a table (for a tidy layout):
NOTE: "sql" is in case there is more than one users image to get, i've checked the query when there is more than one user image to get and it looks fine... Code:
I keep getting the following error at the line "Do while oRs.EOF = FALSE". I've already added some code in the SQL standard procedure to eliminate the recordsets that are returned from temp tables (i.e. not the final recordset), but it still returns the same error.
The reason I'm using the recordset object is because I need to output the result of each recordset, and am not sure how to do this otherwise.
The error message and ASP code is below.
Error Type: ADODB.Recordset (0x800A0E78)
Operation is not allowed when the object is closed. Code:
The following ASP code yields the following error, but actually the new record is stored in database. The same error happens when the application deletes a record, such as sqlStmt ="delete from test where username='2323'"
<% Dim objRS, sqlStmt Set objRS = Server.CreateObject ("ADODB.Recordset") sqlStmt = "insert into test VALUES ('2341', '2341');" objRS.Open sqlStmt, strConnect objRS.Close Set objRS = Nothing %>
ADODB.Recordset error '800a0e78' Operation is not allowed when the object is closed.
I'm trying to build a search for my forums that i'm building and now i'm getting this error: Microsoft JET Database Engine error '80040e14' Syntax error in JOIN operation. Code:
I m getting the following error when executing the below given code:
==== Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. =====
I have come up against a very strange error, well one I havnt got before - and was wondering is there a way around this. In my mysql db i have a price field which is set as "decimal(10,2)" but when I try read from it through my asp page I get this error at the line where i do my recordset query:
Microsoft Cursor Engine (0x80040E21) Multiple-step operation generated errors. Check each status value.
If I change the field type to "Integer(10)" its fine, it just doesnt like the decimal for some reason . And the thing thats really throwing me off is when I write the sql string doing the query out to the page and copy it into my mysql browser and run it, it comes back fine with all the data and no error.
I have put a chat site on the web that I have got off here a while ago. It contains an access db. I am now getting this error ;
ADODB.Connection.1 error '800a0bb9'
The application is using arguments that are of the wrong type, are out of acceptable range, or are in conflict with one another. /TheChatroom/includes/OpenDB.asp, line 5
It works on my PC through IIS 6. Does anyone know what is wrong?
if i want to perform the below sql update like every 10 mins when detected the hr:min:sec sessions started. And where should i put it in global.asa ? Session_onStart ?Code:
The project i am working on just now requires me to provide users with a link to download articles stored on the sites FTP server.This is not a problem to do, however, i also need to keep a record of who downloads what and when. I therefore have a downloads tablein my DB for storingthis info. The problem is, when the user clicks on the download link i need the document to be downloaded, AND a query to be executed to record the info into the DB table. I effectivley need the link to action these 2 eventssimultaneously!! Not sure if this is possible.
Is there any way that I can for example, send an email After a file has been downloaded? Currently, it is setup so when they click to download a file...it sends an email...I am trying to figure out a way to have the email sent only have the download has completed.
if I have a list of items which I have to complete next month on different dates, how do I select all the items due for next month, or all items due for the following month. Example:
Task 1 due 15/11/2004 Task 2 due 17/11/2004 Task 3 due 18/12/2004
Is it possible to perform functions on a recordset (rather than on the source database), e.g. COUNT, MAX etc
The reason I would like to do this is because I have a hugely complex view which produces results with over 60 columns of data. I would like to display all data but also highlight individual "cells" in the table which have the highest (i.e. MAX) data for each column. I would also like totals at the bottom of each column.
Obviously I could get the MAX value for each column by performing it on the SQL data but that would effectively mean running the query twice and would take twice as long.
suggest me a asp page which can detach and attach databases. We can use the sp_detach_db, sp_attach_db.I am mainly into administration .As im not into much asp programming im finding it difficult. I dont have much time left to finish. help me with this.If any one have ready made asp page for this purpose ,he could give me the script
I have the belwo code which i mean to do an multiple checkbox insert. I have managed to get it so i puts all the checkbox values into a string seperated by a comma, and it insert into a database, however just not how i need it to.
I have currently found an ASP based website that i developed about 3 years ago and am very keen to get it up and running, it's quite a simple site, however when i try to do anything with the database i have a problem with the DSN Code:
Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x57c4 Thread 0x3474 DBC 0x1234284 Jet'.
Microsoft[odbc driver manager] data source name not found and no default driver specified
my code is as follows and works fine in excel . I have a user dsn set up called Sage and a system dsn called sage so don't think thats the problem
any help will be well appreciated
Dim sSQL dim conn,rst Set Conn = Server.CreateObject("ADODB.Connection") Set rst = Server.CreateObject("ADODB.RecordSet") //get error on next line Conn.Open dsn="Sage", "TestUser", "correctpassword"
i'm using this string to connect to my database whic resite in the other computer of my network the connection is like this set objconn = server.createobject("ADODB.Connection")