PRB: Creating Application with PWS 4.0, Windows 95 and VIDID: Q184572
|
When creating data connections with Visual InterDev 1.0 or 6.0 and Personal Web Server (PWS) 4.0 on Windows 95, the following errors may occur:
Error: 80004005 [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
-or-
Error: 80040e14 [Microsoft][ODBC Microsoft Access 97 Driver]The Microsoft Jet Database engine cannot find the table or query 'tablename'. Make sure it exists and that its name is spelled correctly.
The Web project folder (for example, \test) has not been created as an "Application" or the "Application" has not been restarted since modifying the Global.asa file.
Most often this is caused by not having "Execute" permissions selected on
the Web project in the Personal Web Manager. "Execute" permissions is
required to make a Web Project an "Application."
NOTE: If you are using an existing Web project in Visual InterDev created
by FrontPage Publisher, then the execute permissions are not set (Web
project is not an application).
Use the following steps to determine if your Web project is an
"Application":
NOTE: By default the Personal Web Manager will not add these subfolders to the directory path of your Web site, but your Web site will be accessible.HTTP Error 404
404 Not Found
The Web server cannot find the file or script you asked for. Please check the URL to ensure that the path is correct.
Please contact the server's administrator if this problem persists.
pws /stop
To start type it, type the following command:
pws /start
This behavior is by design.
This error happens when you recently edited an already used data connection in the Global.asa, but you are now pointing to a different database. The application has not been restarted to refresh the new Global.asa.Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified"
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC Microsoft Access 97 Driver] The Microsoft Jet Database
engine cannot find the table or query 'tablename'. Make sure it exists
and that its name is spelled correctly."
<%
Dim sessitem
response.write "SessionID: " & Session.SessionID & "<P>"
response.write "List of " & Session.Contents.Count & " items in Session
contents collection:<HR>"
For Each sessitem in Session.Contents
If IsObject(Session.Contents(sessitem)) Then
Response.write(sessitem & " : Session object cannot be displayed."
& "<BR>")
ElseIf IsArray(Session.Contents(sessitem)) Then
Response.write "Array named " & sessitem & "<ol>"
For each objArray in Session.Contents(sessitem)
Response.write "<li>" & objArray & "<BR>"
Next
Response.write "</ol>"
Else
Response.write(sessitem & " : " & Session.Contents(sessitem) &
"<BR>")
End If
Next
%>
Additional query words: 80004005, data source name
Keywords : kberrmsg kbADO kbExtension kbFrontPage kbServer kbVisID100 kbVisID600 kbWebServer kbGrpASP
Version : WINDOWS:1.0,4.0,6.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: July 9, 1999