Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

using Excel as a DB
I am reading from an excel spreadsheet as an ODBC Recordset.
But whenever i try to write to it I get an error


A)
Ideally i would like to write "Mark" to A5
like this :
RS("$A5") = "Mark"
RS.UpdateBatch
but it doenst like the RS("$A5") is there an easy way to do this?


B) if i cant access it like that i have done loops to find out if it is
at the right location then do a
rs.fields.item(counter).value = "Mark"
which works but when i do a
rs.updatebatch
i get :
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Excel Driver] Operation must use an updateable query.

on the line number of the updatebatch

Code is as follows... I just dont understand what to change to make it
work.  I believe all file permissions are ok and have checked twice.





 ########################################
######
CODE
 ########################################
######
<%
exceldb="betting.xls"
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open "DBQ=" & Server.MapPath(exceldb) & ";" & _
"DRIVER={Microsoft Excel Driver (*.xls)};"


Set rs = Server.CreateObject("ADODB.Recordset")

sql="select * from hammerin_hank;"

rs.Open sql, cn, 3,4
dim MKGCount
MKGCount = 0
do while not rs.eof
' Loop through all of the fileds
MKGCount = MKGCount + 1
for counter = 0 to rs.fields.count - 1
response.write rs.fields.item(counter).value
if MKGCount = 4 then
if counter = 0 then
rs.fields.item(counter).value = "Mark"
rs.updatebatch
end if
end if
next
rs.movenext
loop
rs.Close
Set rs = Nothing
' Kill the connection
cn.Close
Set cn = Nothing
%>

Report this thread to moderator Post Follow-up to this message
Old Post
Mark
12-24-04 08:55 PM


Re: using Excel as a DB
If you want to do an update then the best approach is to use SQL

<%
exceldb="betting.xls"
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open "DBQ=" & Server.MapPath(exceldb) & ";" & _
"DRIVER={Microsoft Excel Driver (*.xls)};"

cn.execute "update hammerin_hank set updateFieldName='update value' where
idFieldName='recIdToUpdate'"


%>

Tim.



"Mark" <Mark@MARK.MArk.Mark.Com> wrote in message
news:%23KsJC1d6EHA.1564@TK2MSFTNGP09.phx.gbl...
> I am reading from an excel spreadsheet as an ODBC Recordset.
> But whenever i try to write to it I get an error
>
>
> A)
> Ideally i would like to write "Mark" to A5
> like this :
> RS("$A5") = "Mark"
> RS.UpdateBatch
> but it doenst like the RS("$A5") is there an easy way to do this?
>
>
> B) if i cant access it like that i have done loops to find out if it is
> at the right location then do a
> rs.fields.item(counter).value = "Mark"
> which works but when i do a
> rs.updatebatch
> i get :
> Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
> [Microsoft][ODBC Excel Driver] Operation must use an updateable query.
>
> on the line number of the updatebatch
>
> Code is as follows... I just dont understand what to change to make it
> work.  I believe all file permissions are ok and have checked twice.
>
>
>
>
>
>  ########################################
######
> CODE
>  ########################################
######
> <%
> exceldb="betting.xls"
> Set cn = Server.CreateObject("ADODB.Connection")
> cn.Open "DBQ=" & Server.MapPath(exceldb) & ";" & _
> "DRIVER={Microsoft Excel Driver (*.xls)};"
>
>
> Set rs = Server.CreateObject("ADODB.Recordset")
>
> sql="select * from hammerin_hank;"
>
> rs.Open sql, cn, 3,4
> dim MKGCount
> MKGCount = 0
> do while not rs.eof
> ' Loop through all of the fileds
> MKGCount = MKGCount + 1
> for counter = 0 to rs.fields.count - 1
> response.write rs.fields.item(counter).value
> if MKGCount = 4 then
> if counter = 0 then
> rs.fields.item(counter).value = "Mark"
> rs.updatebatch
> end if
> end if
> next
> rs.movenext
> loop
> rs.Close
> Set rs = Nothing
> ' Kill the connection
> cn.Close
> Set cn = Nothing
> %>



Report this thread to moderator Post Follow-up to this message
Old Post
Tim Williams
12-24-04 08:55 PM


Re: using Excel as a DB
I still get the same error...



 ########################################
##

Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Excel Driver] Operation must use an updateable query.
/excel/excel_display1.asp, line 34


line 34:

cn.execute "update hammerin_hank set Name='" & "MARK" &"' where ID=4"


Tim Williams wrote:

> If you want to do an update then the best approach is to use SQL
>
> <%
> exceldb="betting.xls"
> Set cn = Server.CreateObject("ADODB.Connection")
> cn.Open "DBQ=" & Server.MapPath(exceldb) & ";" & _
> "DRIVER={Microsoft Excel Driver (*.xls)};"
>
> cn.execute "update hammerin_hank set updateFieldName='update value' where
> idFieldName='recIdToUpdate'"
>
>
> %>
>
> Tim.
>
>
>
> "Mark" <Mark@MARK.MArk.Mark.Com> wrote in message
> news:%23KsJC1d6EHA.1564@TK2MSFTNGP09.phx.gbl...
> 
>
>
>
> From - Sat

Report this thread to moderator Post Follow-up to this message
Old Post
Mark
12-25-04 08:55 AM


Re: using Excel as a DB
Mark wrote:
> I am reading from an excel spreadsheet as an ODBC Recordset.
> But whenever i try to write to it I get an error
>
>
> A)
> Ideally i would like to write "Mark" to A5
> like this :
> RS("$A5") = "Mark"
> RS.UpdateBatch
> but it doenst like the RS("$A5") is there an easy way to do this?
>
>
> B) if i cant access it like that i have done loops to find out if it
> is at the right location then do a
> rs.fields.item(counter).value = "Mark"
> which works but when i do a
> rs.updatebatch
> i get :
> Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
> [Microsoft][ODBC Excel Driver] Operation must use an updateable query.
>
> on the line number of the updatebatch
>
> Code is as follows... I just dont understand what to change to make it
> work.  I believe all file permissions are ok and have checked twice.
>

Does the IUSR account have permissions to the file?

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"



Report this thread to moderator Post Follow-up to this message
Old Post
Bob Barrows [MVP]
12-25-04 08:55 PM


Re: using Excel as a DB
File is definitely not readonly ?

Tim.


"Mark" <Mark@MARK.MArk.Mark.Com> wrote in message
news:el5Gkkk6EHA.2156@TK2MSFTNGP10.phx.gbl...
>I still get the same error...
>
>
>
>  ########################################
##
>
> Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
> [Microsoft][ODBC Excel Driver] Operation must use an updateable
> query.
> /excel/excel_display1.asp, line 34
>
>
> line 34:
>
> cn.execute "update hammerin_hank set Name='" & "MARK" &"' where
> ID=4"
>
>
> Tim Williams wrote:
> 



Report this thread to moderator Post Follow-up to this message
Old Post
Tim Williams
12-26-04 01:55 AM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

ASP archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 08:32 AM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.