I have an access database residing on one server that contains necessary data for this application, have sql database that also contains necessary data and resides on another server.
For two access databases I would just "link" the tables and be done with it, but when attempting to do this with ODBC connection to the SQL server I get
I am new to ASP and I want to use a query which links one record in a table to another record in the same table to display a list of values. The query lists the names of all managers (the managers staff no is held in the reports_to field of an employee)
Set rs=Server.CreateObject("ADODB.Recordset")
rs.Open "SELECT DISTINCT p2.Surname + ', ' + p2.[First name] AS Expr1 FROM People p1 INNER JOIN People p2 ON p1.reports_to = p2.[Staff no] WHERE (p1.[Staff no] IS NOT NULL)",con,3,3 while not rs.EOF %> <option value="<%=rs("p2.surname")%></option> <% rs.MoveNext wend rs.Close
However it doesn't like the alias (p2). Is it possible to return a list from this type of query?
I'm trying to update an Access db: if link is ok, then status=up else status=down, in a form with 3 fields: names, link, status:
<% Server.ScriptTimeout = 1500 %>
<% Session.timeout = 1 If IsObject(Session("press_conn")) Then Set conn = Session("press_conn") Else Set conn = Server.CreateObject("ADODB.Connection") conn.open "press","","" Set Session("press_conn") = conn End If
sql = "SELECT names, status, link from websites order by names" Set rs = Server.CreateObject("ADODB.Recordset") rs.Open sql, conn, 3, 3 rs.MoveFirst
Dim GotothisURL
Do Until rs.EOF GotothisURL = rs("link") Set GetConnection = CreateObject("Microsoft.XMLHTTP") GetConnection.Open "get", GotothisURL, False on error resume next GetConnection.Send ResponsePage = GetConnection.responseText
if ResponsePage="" then sql = "UPDATE (websites) set status=(offline) WHERE names = '"&rs("names")&"' AND link = '"&rs("link")&"'" conn.Execute(sql) else sql = "UPDATE (websites) set status=(online) WHERE names = '"&rs("names")&"' AND link = '"&rs("link")&"'" conn.Execute(sql) end if
Set GetConnection = Nothing Set ResponsePage = Nothing
rs.MoveNext
Loop
conn.close set conn = nothing rs.close set rs = nothing %>
I get no errors at all. The path to db is ok.
The script acts very very strange. On the first run, it seems that everything is ok, but the page freezes on half [the blue bar on bottom of browser]. If I'll stop the script, on the second run, the page loads very quick, but nothing happens.
I have a database with 20 companies and their links in it. Ive tried to develop some code that i found in another forum while i was searching for a solution to 'unique random links' but, although i feel im close, Code:
Is there any way to attain the names of the tables in a database from using either ADO connection or ODBC or any other type of connection.
The reason I wish to do this is so that I can display all the information in table (field names and values - this piece of code works) from a dynamic SQL statement.
I'm trying to access a table in a MS Access database using ASP but the name of the table is causing me some trouble. The problem is the table name has a space in it eg, "My Table".
If i try and access it using a query "SELECT * FROM My News", it says i cant find table "My". If i remove the space from the name (to MyTable) it works fine. But the trouble is its a customers database and i cant easily rename it because its linked to other tables and db's.
How can i access a table with a space in its name? I've tried "SELECT * FROM My_News" but that doesnt work either.
I have an Access DB which contains couple of link tables. All these tables are from different databases. So each one has it's own database password. Since there is no way to save the password during the DSN creation. Then you need to manually type in the password each first time when open the table.
This causes the problem in ASP code during run a query. Since the table cannot be accessed due to the password protection. Is there any statement than can open a table and meanwhile pass the password in? Does anyone experienced with the similar situation?
I am using ADODB.Connection to access an Access DB(mdb) on my website. I switch from one webhosting company to another and not my website can not connect to my access db. I have provided the code for your review.. Where is the problem.. How can I get the code to find the (MDB) database? Also I am connecting and testing is new web site via ip... His domain name is still pointing back to the old DNS address.. Code:
I'm using ASP to connect to a simple Access DB, it works fine once but when I refresh it gives an unspecified error from the line with the driver. I've had this happen before but not this often. Here is my connection string etc...
I have an ASP script that opens an Access DB and tries to record an IP address if the user has never visited the site. However, when the script is run, I get an error saying the the DB is read-only. I checked to DB propoerties and it is notlisted as read-only, and when I run my Query on it, it does not open the recordset as a read-only connection. I can only assume that something else has the DB r the table open, but Ihave no idea where.
I am using GoDaddy.com's hosting service. I am not sure if the problem is my code or their server. I use the following code as my connection to the Access Database: Code:
I really like this forum as I can usually find the answer to all my questions by searching, but I haven't been able to find a way to resolve this problem. This is my setup. We have 2 local servers. One running WinNT that handles all our internal databases in dbf formats. The other server is WinServer 2k3 and it handles all webstuff. The Win2k3 Server logs onto the WinNT Server and can see and open all the files. If I copy a file from the NT Server to the 2k3 server, I can utilize the database using the connect string:
but, I cannot connect to it directly on the other server. I believe it is a permissions issue, but if I change the Annonomus Access user to one that can access the other server, it asks for a password. I have even tried a virtual server but cannot find a connection string that will allow me to access it.
I copied it to my dev PC and setup site in Dreamweaver. I have a local site, a testing server which points to a different location and I am using IIS5.1 virtual directory for connecting.
Strange thing is, I keep getting error "Provider (0x80004005)" after some usage. Now it is on the .Open method of an ADO COMMAND. It looks like everytime I try a second .Open I get the error. for example the first access checks User/Pass and returns info. 2nd access tries to open list of all users for admin.
The database is not being locked for exclusive anywhere I can see.
The directory/database security is all setup for the IUSR account (and first connections work anyway) I would hazard it is a locking issue but not sure why.
As I said this site is suppose to be functional, loading in DWMX2004 and using a test server on my local machine however causes a problem.
I am passing 3 hidden fields to another page using the method="post" Here is the next page - <% Dim fmMemberID, fmUsername, fmPassword fmMemberID = request.Form("memberID") fmUsername = request.Form("username") fmPassword = request.Form("password") %> <% Dim dbConn set dbConn = Server.CreateObject("ADODB.Connection") dbConn.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=d:inetpubcredencia.netfpdbmembers.mdb" dbConn.Open
Dim rsMember Set rsMember = Server.CreateObject("ADODB.Recordset") rsMember.Open "SELECT * FROM Members WHERE MemberID=179", dbConn, %>
I have an asp page with a form. I want the add the values to a Microsoft Access table. The name of the table is "seminars" and the fields are "company, phone, email, etc.". How i can create a connection from asp page to the Microsoft Access database?
I am using WIN XP, IIS 5.1 and MS Access as database support. I set up the file security to include IUSR_MYNAME on the permissions list for all my web files, DB and scripts. I set up and ODBC connection (system) and linked it to my Access database file.
I am however getting the same error when I try to load any ASP page on the line where I command the script to open the connection. Are there any local security issues I am forgetting?
Set conn= Server.Createobject("ADODB.Recordset") Conn.Open "MyAlias"
that's where I get the error. "Error type: Provider(0x80004005) Unspecified Error"
What is the best and most efficient connection type to connect to an access database (MDL, DSN, ODBC, OLE-DB, etc). Right now i'm using an OLE-DB connection which is the best according to one site, but I saw on another site that said DSN was the best.
var Cn = new ActiveXObject("ADODB.Connection"); var Sc = "driver={Microsoft Access Driver (*.mdb)};dbq=" + Server.MapPath("guestbook.mdb"); Cn.Open(Sc);
the following error occurs: Microsoft OLE DB Provider for ODBC Drivers error '80004005'
I have a form that is set up to search the table and attached is the code that is trying to get data from that table. Need help please, if anyone has any ideas.
This is the error Im getting:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near '2003'.
Our hosting service migrated our web page from a Windows 2000 Server to Windows 2003. Our website is www.DisketteConnection.com.
I now intermittently receive error:
ADODB.Recordset error '800a0e7d' The connection cannot be used to perform this operation. It is either closed or invalid in this context.
/shopcart/shopdisplaycategories.asp, line 36
I believe line 36 is "rs.Close". I can include additional code or the code opening the file if you need it. I utilize Microsoft 97 Access Database.
The hosting service indicated the problem lies in that the current code was written for Windows 2000 server. Our original programmer is no longer with the company and I'm at a loss to determine how to address the issue.
i run asp in my standalone pc, using access2003 as the database, like this:
i hv 3 pages, 1st page, i open the database, extract data from database for display(closing the connection using "recordset.close" and "conn.close").... then i have form input for users to input some information...and post to 2nd page
2nd page, this page may load N times depending on the user input in first page...for each time loading, i hv form input for users to input the detailed information. and for 2nd to Nth loading, i will get previous page's form input information(request.form("xxx")), then insert into database ("conn.execute")and close it("conn.close")...
last page, this page get Nth loading user input information for the 2nd page, then open database, insert into database("conn.execute") and close it("conn.close")...
now the problem is like this...database can not store data correctly: it did not insert N rows into database....maybe N+1 or N+M...randomly...because same data is insert more than once, so some rows are just duplicated...it seemes that the connection just can not be closed and do insertion more than once during each time the 2nd page is loading or during the last page is loading...
can anyone help me to find out the problem? any suggestion?
I have an .ASP page with a form on it, which I want the info input into the form to be submitted to a database. I am trying to create a Custom Connection String in Dreamweaver but I am having a hard time. I set the path correctly, etc.
Is it not working because I am trying to run this with an Access database and it's on a Linux server? I thought i'd start out simple before I post a million pages of details.
my problem is with a db(that i upload on server every day) which has some "static" tables in it plus a table updated every day. the website must show the date of last update of that table so i first retrieved that from the access file, but this means that every time i upload db(with that table untouched) the last update changes. i've found something about table's extend properties on the internet but i don't know if this can be useful to me.
Can anyone direct me to a web page (tutorial) where there is an explanation on how to create a web page that connects to access database and I can enter data and update the table? I can create a page using visual Interdev that displays the table only.
trying to run an UPDATE query on an Access DSN.Done the following.Updated DSN to full access.Given write permission on the IIS directory.still getting error, Operation must use anupdateable query.whats going on?
I have a table in an Access database that I would like to download in an excel spreadsheet. No editing required, I simply want to copy the whole table.
I can connect to the table and, if I wanted, could display the complete data in the table on a web page but importing that data into excel is where I am stuck at.
id autonumber firstname text lastname text datelogged date email address text faultdesc memo
When a user fills the form with these fields the data get saved to the table AND I would like to see a message saying your unique ID (fault number) is xxxxxxx .