Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.1
|
ASP.NET 1.1 As of 10/6/2005, this forum is locked as part of the reorganization described here: http://p2p.wrox.com/topic.asp?TOPIC_ID=35394. No posts have been deleted. Open ongoing discussions from the last week have been moved to either ASP.NET 1.0 and 1.1 Beginners http://p2p.wrox.com/asp-net-1-0-1-1-basics-60/ or ASP.NET 1.0 and 1.1 Professional. http://p2p.wrox.com/forum.asp?FORUM_ID=50. See my sticky post inside for more.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.1 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 1st, 2004, 12:23 PM
Registered User
 
Join Date: May 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Couldn't find installable ISAM exception

I am trying to access a named range on an Excel spreadsheet (Excel 97), but I am getting an error "Couldn't find installable ISAM" during the connection Open(). I have tried completely uninstalling Office 97 and reinstalling, but still get the error. I've made sure that the MSEXCL35.dll is present - it is.

The following is my connection string:
Dim strConnection As String = "Provider=Microsoft.Jet.OleDb.3.51;" & _
            "data source=D:\Development\BegASPNETdb\datastores\inven tory.xls;" & _
            "Extended Properties=Excel 8.0;"

Here is the complete code to Select the range "Items":

Sub Page_Load(Source As Object, E As EventArgs)
   Dim strConnection As String = "Provider=Microsoft.Jet.OleDb.3.51;" & _
            "data source=D:\Development\BegASPNETdb\datastores\inven tory.xls;" & _
            "Extended Properties=Excel 8.0;"
   Dim objConnection As New OleDbConnection(strConnection)

   Dim strSQL As String = "SELECT * FROM Items"
   Dim objCommand As New OleDbCommand(strSQL, objConnection)

   objConnection.Open()
   dgInventory.DataSource = objCommand.ExecuteReader()
   dgInventory.DataBind()
   objConnection.Close()
End Sub

The issue seems to be with the installation of the ISAM files. Any help is appreciated.

RanceR
 
Old August 1st, 2004, 01:54 PM
Authorized User
 
Join Date: Jul 2004
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Try this. It worked for me...

http://www.dbforums.com/t652424.html

Jim






Similar Threads
Thread Thread Starter Forum Replies Last Post
Could not find installable ISAM Lillian ASP.NET 1.0 and 1.1 Basics 12 May 16th, 2010 09:01 AM
Error: Could not find installable ISAM dummy Classic ASP Basics 0 May 16th, 2007 02:36 AM
"Could not find installable ISAM" evidica ASP.NET 1.0 and 1.1 Basics 3 March 12th, 2007 11:27 AM
Could not find installable isam Johno13 BOOK: Beginning VB.NET Databases 1 October 5th, 2006 11:46 AM
Could not find installable ISAM message cfleming BOOK: Beginning VB.NET Databases 5 July 9th, 2005 02:45 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.