473,397 Members | 2,077 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,397 software developers and data experts.

Receiving Unspecified Error...


Unspecified error
C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4

And line 4 is this
Connect.Open "database"

Its happening across the board too, on each database on this server. Same
errors, but connecting to different databases.

Any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
Jul 19 '05 #1
6 2144
OK, now its working fine.... its so random.. any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@TK2MSFTNGP11.phx.gbl...

Unspecified error
C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4

And line 4 is this
Connect.Open "database"

Its happening across the board too, on each database on this server. Same
errors, but connecting to different databases.

Any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.

Jul 19 '05 #2
Does this have something to do with FTP'ing? www.aspfaq.com/5004

Ray at work

"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:ug***************@TK2MSFTNGP09.phx.gbl...
OK, now its working fine.... its so random.. any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@TK2MSFTNGP11.phx.gbl...

Unspecified error
C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4

And line 4 is this
Connect.Open "database"

Its happening across the board too, on each database on this server. Same errors, but connecting to different databases.

Any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.


Jul 19 '05 #3
One more thing, when i get the error, if I wait about 30-60 seconds, and
refresh, the page will load fine, but then when I try to access it again, i
get the error, then I can wait again, refresh, and I'll get it again, and
then lose it. It keeps going off and on.....

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:ug*************@TK2MSFTNGP09.phx.gbl...
OK, now its working fine.... its so random.. any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@TK2MSFTNGP11.phx.gbl...

Unspecified error
C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4

And line 4 is this
Connect.Open "database"

Its happening across the board too, on each database on this server. Same errors, but connecting to different databases.

Any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.


Jul 19 '05 #4
You might try might try putting your reference to ADO in your global.asa
file, like so...
<!-- METADATA TYPE="typelib" FILE="c:\path\to\msado15.dll" -->

"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:ug*************@TK2MSFTNGP09.phx.gbl...
OK, now its working fine.... its so random.. any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@TK2MSFTNGP11.phx.gbl...

Unspecified error
C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4

And line 4 is this
Connect.Open "database"

Its happening across the board too, on each database on this server. Same errors, but connecting to different databases.

Any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.


Jul 19 '05 #5
OK, this works great
:
Dim Connect, cst
cst = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=c:\inetpub\databases\db.mdb"
Set Connect = Server.CreateObject("ADODB.Connection")
Connect.Open cst

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:#P**************@TK2MSFTNGP11.phx.gbl...
One more thing, when i get the error, if I wait about 30-60 seconds, and
refresh, the page will load fine, but then when I try to access it again, i get the error, then I can wait again, refresh, and I'll get it again, and
then lose it. It keeps going off and on.....

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:ug*************@TK2MSFTNGP09.phx.gbl...
OK, now its working fine.... its so random.. any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@TK2MSFTNGP11.phx.gbl...

Unspecified error
C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4

And line 4 is this
Connect.Open "database"

Its happening across the board too, on each database on this server. Same errors, but connecting to different databases.

Any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.



Jul 19 '05 #6
Your problem is Access, not your code.

"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@tk2msftngp13.phx.gbl...
OK, this works great
:
Dim Connect, cst
cst = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=c:\inetpub\databases\db.mdb"
Set Connect = Server.CreateObject("ADODB.Connection")
Connect.Open cst

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:#P**************@TK2MSFTNGP11.phx.gbl...
One more thing, when i get the error, if I wait about 30-60 seconds, and
refresh, the page will load fine, but then when I try to access it again,
i
get the error, then I can wait again, refresh, and I'll get it again,

and then lose it. It keeps going off and on.....

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:ug*************@TK2MSFTNGP09.phx.gbl...
OK, now its working fine.... its so random.. any ideas?

--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com

I should've known that....but I had a brain fart.
"David Lozzi" <dl****@associatedbtg.com> wrote in message
news:Ot**************@TK2MSFTNGP11.phx.gbl...
>
> Unspecified error
> C:\INETPUB\WWWROOT\WELCOME\../common/adovbs.inc, line 4
>
> And line 4 is this
> Connect.Open "database"
>
> Its happening across the board too, on each database on this server.

Same
> errors, but connecting to different databases.
>
> Any ideas?
>
> --
> David Lozzi
> Associated Business & Technology Group
> www.associatedbtg.com
>
> I should've known that....but I had a brain fart.
>
>



Jul 19 '05 #7

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

Similar topics

5
by: Dave | last post by:
Hi All C# ADSI samples that I run cause unspecified errors. If I translate them into VB.NET they run fine. Here's an example: public string getEmail(string LDAPPath, string username) {...
4
by: RM | last post by:
Had VS .Net 2002 installed on W2k Server SP3 and supported a number of web sites. Installed VS .Net 2003 on Friday and now all web sites using .Net & MS ACCESS get this strange error upon open. ...
2
by: Jim Lacenski | last post by:
I have a VB class that uses .NET and ADODB to write into an Excel spreadsheet (via Jet) on a server as part of a web application. ADODB is used instead of ADO.NET because it greatly simplifies the...
1
by: T8 | last post by:
I have a asp.net (framework 1.1) site interfacing against SQL 2000. It runs like a charm 99% of the time but once in a while I get the following "unspecified error". Sometimes it would resolve by...
3
by: GotdotNet | last post by:
I get this error once in a while and I normally could fix it by restarting IIS. However, I would like to find out what causes this. Can anyone help? -----------------------------error...
1
by: Siegfried Heintze | last post by:
I'm using a third party hosting service. I presently have a Web Service on this hosting service's server that loads and executes a native mode DLL. This demonstrates that the hosting service has...
7
by: Jim McGivney | last post by:
ASPX page from VS.net-C# on host's computer using oleDataAdaptor to connect to Microsoft Access database. The page loads, but when connection to the database is attempted to fill a datagrid the...
6
by: sowencheung | last post by:
I have the following code in the event onbeforeunload if ( typeof executingPostBack != 'undefined' && !executingPostBack ) event.returnValue = ""Warning: Modified data has not been saved.""; ...
0
by: fniles | last post by:
I am using VB.Net 2003 and MS Access database. Sometimes when I open the database, I got the error "Unspecified error" The application validate users, when it validates users, it reads from a...
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: 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?
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.