473,385 Members | 1,337 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

access and ASP.NET

We have a small website using Visual basic and ASP.NET. We hold a database
in Access format which is opened with the following 3 lines

Dim m_dataBase As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data
Source=C:\callidusWorld\app_data\webAccess.mdb"
Dim myConn As New OleDbConnection(m_dataBase)
myConn.Open()

most of the time this works as expected but every now and then it seems
unable to open the database and throws an exception.

Any subsequent call continues to raises the same exception and the only
remedy so far is to reboot the server which is far from elegent.

I cannot change to another database and never had this problem with ASP - if
any one has any ideas I would be very grateful.

Many thanks in advance
Phil

The rather unhelpful message from ASP.NET is that it's an unspecified error
Unspecified error
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error


Aug 3 '06 #1
9 1262
What kind of operations are you performing and what is the amount of
traffic? I ask because the performance of an Access database drops
significantly as you perform update/delete/insert operations and begins to
generate errors. Even a low count of 10 concurrent users will start to
degrade the performance. Selects don't have as much trouble.

If you're using DataReaders to fetch the data, make sure that you are
closing them and releasing them as soon as you're done as a DataReader
maintains a connection to the database until the end of the resultset.

You could try using the trace functionality to see write out some debugging
information, such as what exact operations are going on at the time. That
way, it may be possible to play with it until you can get it to crash and
view a trace log.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage

"phil" <ph**@oakleafsoftware.co.ukwrote in message
news:eV**************@TK2MSFTNGP04.phx.gbl...
We have a small website using Visual basic and ASP.NET. We hold a database
in Access format which is opened with the following 3 lines

Dim m_dataBase As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data
Source=C:\callidusWorld\app_data\webAccess.mdb"
Dim myConn As New OleDbConnection(m_dataBase)
myConn.Open()

most of the time this works as expected but every now and then it seems
unable to open the database and throws an exception.

Any subsequent call continues to raises the same exception and the only
remedy so far is to reboot the server which is far from elegent.

I cannot change to another database and never had this problem with ASP -
if any one has any ideas I would be very grateful.

Many thanks in advance
Phil

The rather unhelpful message from ASP.NET is that it's an unspecified
error
Unspecified error
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error


Aug 3 '06 #2
Phil,
The best thing you can do for yourself is get rid of Access and switch to
say, SQLExpress. Since you indicated that for some reason you cannot do this,
the next step would be to make absolutely sure that all connections are
properly and promptly closed immediately after the unit of work using the
connection is complete. Access just was never designed to be a multiuser
database.

Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"phil" wrote:
We have a small website using Visual basic and ASP.NET. We hold a database
in Access format which is opened with the following 3 lines

Dim m_dataBase As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data
Source=C:\callidusWorld\app_data\webAccess.mdb"
Dim myConn As New OleDbConnection(m_dataBase)
myConn.Open()

most of the time this works as expected but every now and then it seems
unable to open the database and throws an exception.

Any subsequent call continues to raises the same exception and the only
remedy so far is to reboot the server which is far from elegent.

I cannot change to another database and never had this problem with ASP - if
any one has any ideas I would be very grateful.

Many thanks in advance
Phil

The rather unhelpful message from ASP.NET is that it's an unspecified error
Unspecified error
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error


Aug 3 '06 #3
I'd love to do that but I have a great big Access system with VBA and the
works all doing exactly what I need. The ASP.net is just to provide a public
display of some data - the traffic is very low and it seems overkill to
rewrite the whole thing when it was working perfectly in old ASP

Thanks for the info though
Phil

"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in message
news:EE**********************************@microsof t.com...
Phil,
The best thing you can do for yourself is get rid of Access and switch to
say, SQLExpress. Since you indicated that for some reason you cannot do
this,
the next step would be to make absolutely sure that all connections are
properly and promptly closed immediately after the unit of work using the
connection is complete. Access just was never designed to be a multiuser
database.

Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"phil" wrote:
>We have a small website using Visual basic and ASP.NET. We hold a
database
in Access format which is opened with the following 3 lines

Dim m_dataBase As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data
Source=C:\callidusWorld\app_data\webAccess.mdb"
Dim myConn As New OleDbConnection(m_dataBase)
myConn.Open()

most of the time this works as expected but every now and then it seems
unable to open the database and throws an exception.

Any subsequent call continues to raises the same exception and the only
remedy so far is to reboot the server which is far from elegent.

I cannot change to another database and never had this problem with ASP -
if
any one has any ideas I would be very grateful.

Many thanks in advance
Phil

The rather unhelpful message from ASP.NET is that it's an unspecified
error
Unspecified error
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error



Aug 3 '06 #4
I've used a session variable to 'trace' when this is being called and
hopefully next time I may get some indication as to what is going on/wrong

Seems ASP.NET is more fussy that ASP

Phil

"Mark Fitzpatrick" <ma******@fitzme.comwrote in message
news:eM**************@TK2MSFTNGP03.phx.gbl...
What kind of operations are you performing and what is the amount of
traffic? I ask because the performance of an Access database drops
significantly as you perform update/delete/insert operations and begins to
generate errors. Even a low count of 10 concurrent users will start to
degrade the performance. Selects don't have as much trouble.

If you're using DataReaders to fetch the data, make sure that you are
closing them and releasing them as soon as you're done as a DataReader
maintains a connection to the database until the end of the resultset.

You could try using the trace functionality to see write out some
debugging information, such as what exact operations are going on at the
time. That way, it may be possible to play with it until you can get it to
crash and view a trace log.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage

"phil" <ph**@oakleafsoftware.co.ukwrote in message
news:eV**************@TK2MSFTNGP04.phx.gbl...
>We have a small website using Visual basic and ASP.NET. We hold a
database in Access format which is opened with the following 3 lines

Dim m_dataBase As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data
Source=C:\callidusWorld\app_data\webAccess.mdb"
Dim myConn As New OleDbConnection(m_dataBase)
myConn.Open()

most of the time this works as expected but every now and then it seems
unable to open the database and throws an exception.

Any subsequent call continues to raises the same exception and the only
remedy so far is to reboot the server which is far from elegent.

I cannot change to another database and never had this problem with ASP -
if any one has any ideas I would be very grateful.

Many thanks in advance
Phil

The rather unhelpful message from ASP.NET is that it's an unspecified
error
Unspecified error
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error



Aug 3 '06 #5
"phil" <ph**@oakleafsoftware.co.ukwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
I have a great big Access system
There's the problem...
Aug 3 '06 #6
Rewrite? Is there a true business need to leave ASP? If so, fine. If not,
stay.

"phil" <ph**@oakleafsoftware.co.ukwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
I'd love to do that but I have a great big Access system with VBA and the
works all doing exactly what I need. The ASP.net is just to provide a
public display of some data - the traffic is very low and it seems
overkill to rewrite the whole thing when it was working perfectly in old
ASP

Thanks for the info though
Phil

Aug 4 '06 #7
Dear Peter

thanks for the help

I found a couple of places where I was not specifically closing an
OleDbDataReader and having fixed them it now seems very stable

A word in defence of Access

In our situation where most of the system is being used in house the design
features of Access (Forms, Reports, VBA) are a delight to use. We would not
have more than 5 people on at any time.

To provide a reasonable degree of public visibility the same database works
very well in ASP and ASP.NET so long as the connection times are as low as
possible.

To test the stability I opened 100 almost simultaneous connections to the
server and each one performed perfectly and pretty quickly too.

Every time I mention Access on these newsgroups people seem to hold up a
cross and predict all manner of problems. But the reality is that for the
right site and the right application Access is superb.
Once again thanks for the help you gave - it allowed me to fix the problem

All the best
Phil

"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in message
news:EE**********************************@microsof t.com...
Phil,
The best thing you can do for yourself is get rid of Access and switch to
say, SQLExpress. Since you indicated that for some reason you cannot do
this,
the next step would be to make absolutely sure that all connections are
properly and promptly closed immediately after the unit of work using the
connection is complete. Access just was never designed to be a multiuser
database.

Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"phil" wrote:
>We have a small website using Visual basic and ASP.NET. We hold a
database
in Access format which is opened with the following 3 lines

Dim m_dataBase As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data
Source=C:\callidusWorld\app_data\webAccess.mdb"
Dim myConn As New OleDbConnection(m_dataBase)
myConn.Open()

most of the time this works as expected but every now and then it seems
unable to open the database and throws an exception.

Any subsequent call continues to raises the same exception and the only
remedy so far is to reboot the server which is far from elegent.

I cannot change to another database and never had this problem with ASP -
if
any one has any ideas I would be very grateful.

Many thanks in advance
Phil

The rather unhelpful message from ASP.NET is that it's an unspecified
error
Unspecified error
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error



Aug 7 '06 #8
No problem any more

Access is fine for the right type of application

Thanks

"Mark Rae" <ma**@markNOSPAMrae.comwrote in message
news:OK**************@TK2MSFTNGP04.phx.gbl...
"phil" <ph**@oakleafsoftware.co.ukwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>I have a great big Access system

There's the problem...

Aug 7 '06 #9
"phil" <ph**@oakleafsoftware.co.ukwrote in message
news:uZ**************@TK2MSFTNGP05.phx.gbl...
Access is fine for the right type of application
It certainly is.
Aug 7 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

63
by: Jerome | last post by:
Hi, I'm a bit confused ... when would I rather write an database application using MS Access and Visual Basic and when (and why) would I rather write it using Visual Studio .Net? Is it as easy...
13
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded....
1
by: Dave | last post by:
Hello NG, Regarding access-declarations and member using-declarations as used to change the access level of an inherited base member... Two things need to be considered when determining an...
13
by: Simon Bailey | last post by:
I am a newcomer to databases and am not sure which DBMS to use. I have a very simplified knowledge of databases overall. I would very much appreciate a (simplifed) message explaining the advantages...
0
by: Frederick Noronha \(FN\) | last post by:
---------- Forwarded message ---------- Solutions to Everyday User Interface and Programming Problems O'Reilly Releases "Access Cookbook, Second Edition" Sebastopol, CA--Neither reference book...
20
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to...
64
by: John | last post by:
Hi What future does access have after the release of vs 2005/sql 2005? MS doesn't seem to have done anything major with access lately and presumably hoping that everyone migrates to vs/sql. ...
1
by: com | last post by:
Extreme Web Reports 2005 - Soft30.com The wizard scans the specified MS Access database and records information such as report names, parameters and subqueries. ......
17
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting...
37
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.