If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Please Help! Microsoft JET Database Engine (0x80040E10)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-09-03, 14:39
porare porare is offline
Registered User
 
Join Date: Sep 2003
Posts: 2
Please Help! Microsoft JET Database Engine (0x80040E10)

If any one can help me with this, i would be happy..

I am having problem with accessing data from Access 2000 database with ASP. I tried in all ways i knew for the past 2 days. I registered in this forum hoping that i will find a solution.

Please look at my code,

<% Set oConn = Server.CreateObject("ADODB.Connection")
With oConn
.Provider = "Microsoft.Jet.OLEDB.4.0"
.connectionString = "Data Source=\\dkntsrv3\trlrs\db2.mdb;"
.CommandTimeout = 300
.Open
End With

ssql = "select * from tblEmployeeRecords where [EmplNo]= 'US265220'"
set rst = Server.createObject("ADODB.Recordset")
rst.open ssql,oConn,3,3,adcmdtext *********<Errro here

response.write(rst.recordCount)
%>

This query is working when tried using other fields in place of EmplNO.
not working only for EmplNo, OperNo fields, OperNo is the primary key of the table. All fields in the table are text fields..


Any help with this wil be appreciated.

Thanks in advance.
Ravi.
Reply With Quote
  #2 (permalink)  
Old 09-09-03, 15:09
porare porare is offline
Registered User
 
Join Date: Sep 2003
Posts: 2
I think i found the problem. Problem is not with the code. problem with field names in database.

Anyway thanks for trying.
Reply With Quote
  #3 (permalink)  
Old 04-21-04, 22:13
sib121 sib121 is offline
Registered User
 
Join Date: Apr 2004
Posts: 10
Re: Please Help! Microsoft JET Database Engine (0x80040E10)

did you find an answer to this, I have the same error with an easy update....


update with jet 4 and ado error

I am trying to do a really simple update and keep getting errors whatever method I use.. (have also tried using the connection.execute to update)

Set getEventMembers = Server.CreateObject("ADODB.Recordset")
getEventMembers.ActiveConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Inetpub\wwwroot\datetastic\Database\date tastic_database.mdb;Persist Security Info=False"
getEventMembers.Source = "update customers set dt_customer_name = 'sib' where dt_customer_key = 2"
getEventMembers.CursorType = adopenkeyset
getEventMembers.CursorLocation = 2
getEventMembers.LockType = adLockPessimistic
getEventMembers.Open()

I get an ASP Script Error window come up with the yellow exclamation mark triangle saying 'No value given for one or more required parameters'

Please someone help, am at my wits end, I tried an update using the Dreamweaver GUI and its fine and looks no different to my handwritten code.

Thanks in advance
__________________
Many Thanks
Siobhan
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On