Ask a Question related to ASP.NET General, Design and Development.
-
Giuseppe D'Elia #1
Error with ASP.NET opening OleDb/ODBC database
Hi there,
I got a problem using an MS Access database through
ASP.NET.
After updating my system from .NET Framework 1.0 to 1.1,
my existing
application gives me the following error when opening a
connection
with the code below:
"Unspecified error" (ErrorCode: -2147467259)
string connectionStringKey = "LocalDBConnectionString";
string connectionString
= "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\InetPub\wwwroot\IS_Italy_2003\IS.mdb";
OdbcConnection connection = new OdbcConnection
(connectionString);
try
{
connection.Open();
}
catch (OdbcException ex)
{
string error = ex.Message;
}
finally
{
connection.Close();
}
What's really strange is that:
1. The same application works on some of my colleagues'
computers with
the .net Framework 1.1
2. The very same code works on my computer when creating a
brand new
application with VS.NET 2003
3. The same application was working with .NET Framework 1.0
The same thing happens (including the two cases above)
when using ODBC
classes instead of OleDB ones. In this case the connection
string is:
"FIL=MS Access;DSN=AIS_Local"
and the error is:
"ERROR [HY000] [Microsoft][ODBC Microsoft Access Driver]
Disk or
network error.\r\nERROR [IM006] [Microsoft][ODBC Driver
Manager]
Driver's SQLSetConnectAttr failed\r\nERROR [HY000]
[Microsoft][ODBC
Microsoft Access Driver] Disk or network error."
Need HELP!!!
tks
Giuseppe D'Elia Guest
-
SQL Server - OLEDB or ODBC connection
What are the advantages/disadvantages between selecting an ODBC and an OLEDB connection between MX and a SQL Server 2000 db...? -
Problem with OLEDB over ODBC
I have an asp page used to access data from an access database. When I use the following as connection string (OLEDB)... -
Definite difference between using OLEDB and ODBC as the driver
Hi All Some of you may not remember (or even care for that matter ;0)), but I mentioned in a previous post that I had difficulty using the OLEDB... -
CREATE DATABASE via ADO/OLEDB/ODBC
Hello everybody, Is it possible to do a CREATE DATABASE via ADO using IFX OLEDB or IFX ODBC ?, apparently there is a connection string parameter... -
Connection string - ODBC vs OLEDB and Unspecified Error
This one has me stumped and I was wondering if anyone might have a solution... Using this connection string ... -
Peter #2
Error with ASP.NET opening OleDb/ODBC database
Just to help with a little more info on what might be the
same problem.
[url]http://www.asp.net/Forums/ShowPost.aspx?[/url]
tabindex=1&PostID=225749
I have the same problem that I can't access my mdb.
I have enabled p/w on my db but this does not seem to work
for me.
If you solve the problem please post the solution.
Peter
a>-----Original Message-----
>Hi there,
>
>I got a problem using an MS Access database through
>ASP.NET.
>
>After updating my system from .NET Framework 1.0 to 1.1,
>my existing
>application gives me the following error when opening a
>connection
>with the code below:
>
>"Unspecified error" (ErrorCode: -2147467259)
>
>string connectionStringKey = "LocalDBConnectionString";
>string connectionString
>= "Provider=Microsoft.Jet.OLEDB.4.0;Data
>Source=C:\InetPub\wwwroot\IS_Italy_2003\IS.mdb" ;
>
>OdbcConnection connection = new OdbcConnection
>(connectionString);
>try
>{
>connection.Open();
>}
>catch (OdbcException ex)
>{
>string error = ex.Message;
>}
>finally
>{
>connection.Close();
>}
>
>What's really strange is that:
>1. The same application works on some of my colleagues'
>computers with
>the .net Framework 1.1
>2. The very same code works on my computer when creating1.0>brand new
>application with VS.NET 2003
>3. The same application was working with .NET Frameworkconnection>
>The same thing happens (including the two cases above)
>when using ODBC
>classes instead of OleDB ones. In this case the>string is:
>
>"FIL=MS Access;DSN=AIS_Local"
>
>and the error is:
>
>"ERROR [HY000] [Microsoft][ODBC Microsoft Access Driver]
>Disk or
>network error.\r\nERROR [IM006] [Microsoft][ODBC Driver
>Manager]
>Driver's SQLSetConnectAttr failed\r\nERROR [HY000]
>[Microsoft][ODBC
>Microsoft Access Driver] Disk or network error."
>
>Need HELP!!!
>tks
>.
>Peter Guest
-
John Toop #3
Re: Error with ASP.NET opening OleDb/ODBC database
Hi Peter, I had a similar problem with MSAccess. It was becasuse the ASPNET
user (it seems this is the user that ASP.NET uses) did not have permissions
to read/write ... in the directory I had chosen to place the file. I moved
it into it's own directory and changed the permission to allow ASPNET to do
anything and ... it worked.
I'm using an XP machine. When I clicked on the properties for the folder,
there was no security property. I had to change "folder options" in control
panel away from "simple security" so that I could make this change. Then
after I had it working, I changed "folder options" back to simple security
and it's still working.
That was what I did for my PC. Not necessarily the solution for you.
"Peter" <peter@myresource.co.uk> wrote in message
news:0b7801c351db$c9aa8870$a401280a@phx.gbl...> Just to help with a little more info on what might be the
> same problem.
>
> [url]http://www.asp.net/Forums/ShowPost.aspx?[/url]
> tabindex=1&PostID=225749
>
> I have the same problem that I can't access my mdb.
> I have enabled p/w on my db but this does not seem to work
> for me.
>
> If you solve the problem please post the solution.
>
> Peter
>> a> >-----Original Message-----
> >Hi there,
> >
> >I got a problem using an MS Access database through
> >ASP.NET.
> >
> >After updating my system from .NET Framework 1.0 to 1.1,
> >my existing
> >application gives me the following error when opening a
> >connection
> >with the code below:
> >
> >"Unspecified error" (ErrorCode: -2147467259)
> >
> >string connectionStringKey = "LocalDBConnectionString";
> >string connectionString
> >= "Provider=Microsoft.Jet.OLEDB.4.0;Data
> >Source=C:\InetPub\wwwroot\IS_Italy_2003\IS.mdb" ;
> >
> >OdbcConnection connection = new OdbcConnection
> >(connectionString);
> >try
> >{
> >connection.Open();
> >}
> >catch (OdbcException ex)
> >{
> >string error = ex.Message;
> >}
> >finally
> >{
> >connection.Close();
> >}
> >
> >What's really strange is that:
> >1. The same application works on some of my colleagues'
> >computers with
> >the .net Framework 1.1
> >2. The very same code works on my computer when creating> 1.0> >brand new
> >application with VS.NET 2003
> >3. The same application was working with .NET Framework> connection> >
> >The same thing happens (including the two cases above)
> >when using ODBC
> >classes instead of OleDB ones. In this case the> >string is:
> >
> >"FIL=MS Access;DSN=AIS_Local"
> >
> >and the error is:
> >
> >"ERROR [HY000] [Microsoft][ODBC Microsoft Access Driver]
> >Disk or
> >network error.\r\nERROR [IM006] [Microsoft][ODBC Driver
> >Manager]
> >Driver's SQLSetConnectAttr failed\r\nERROR [HY000]
> >[Microsoft][ODBC
> >Microsoft Access Driver] Disk or network error."
> >
> >Need HELP!!!
> >tks
> >.
> >
John Toop Guest



Reply With Quote

