Connecting Tech Pros Worldwide Help | Site Map

Could Not Find Installable ISAM

Steve
Guest
 
Posts: n/a
#1: Jul 19 '05
I get a "Could Not Find Installable ISAM" error on my objConn.open()
statement. I suspect my connection string is bad. What I am trying to do is
open an Excel file on my local computer from my web server. Where you see
"MyComputerName" I actually have the name of my computer.

Dim objConn As New
System.Data.OleDb.OleDbConnection("server=MyComput erName;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\temp.xls;Extended Properties=Excel 8.0;")

Dim objCmd As New System.Data.OleDb.OleDbCommand

objConn.Open()

objCmd.Connection = objConn
objCmd.CommandText = "INSERT INTO [Sheet1$] (F1) values ('111')"
objCmd.ExecuteNonQuery()

objConn.Close()

Any ideas on how to connect to my local computer from my web server?

Thanks...Steve

Ray Costanzo [MVP]
Guest
 
Posts: n/a
#2: Jul 19 '05

re: Could Not Find Installable ISAM


http://www.google.com/search?q=Could...stallable+ISAM

Also, this group is for "classic" ASP. The ASP.NET groups have "aspnet" in
their names.

Ray at work

"Steve" <Steve@discussions.microsoft.com> wrote in message
news:B400573C-435A-4A1C-8493-03B6C2A09618@microsoft.com...[color=blue]
>I get a "Could Not Find Installable ISAM" error on my objConn.open()
> statement. I suspect my connection string is bad. What I am trying to do
> is
> open an Excel file on my local computer from my web server. Where you see
> "MyComputerName" I actually have the name of my computer.
>
> Dim objConn As New
> System.Data.OleDb.OleDbConnection("server=MyComput erName;Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=c:\temp.xls;Extended Properties=Excel 8.0;")
>
> Dim objCmd As New System.Data.OleDb.OleDbCommand
>
> objConn.Open()
>
> objCmd.Connection = objConn
> objCmd.CommandText = "INSERT INTO [Sheet1$] (F1) values ('111')"
> objCmd.ExecuteNonQuery()
>
> objConn.Close()
>
> Any ideas on how to connect to my local computer from my web server?
>
> Thanks...Steve
>[/color]


Closed Thread