Ask a Question related to Dreamweaver AppDev, Design and Development.
-
legnaimy #1
MS Access
Hi everyone
I design a page where users can submit information, (user name, e-mail,
comments, address), in a Microsoft Access Data Base located in my remote
server; and after get that information in my MS Access file located in my
computer...
This is my connection string: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=c:\Inetpub\wwwroot\prueva\yourdatabase.mdb; "
This is the error everytime I upload my page: /prueva/TMP7vwlkdpskd.asp
Do you know what this error means???
Thanks
legnaimy Guest
-
Web Service + Anon Access, but getting 401 Access Denied Error
I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous... -
Network File access using anonymous access
I have seen a number of entries related to accessing remote resources (files in my case) that need to reside on a remote server. We must leave our... -
Access 2002 PDFWriter VBA Code w/WinXP does not work like Access 2000
I am trying to print an Access 2002 report (Windows XP OS) as a PDF. I had success with Access 2000 in a Windows 2000 environment, but as soon as I... -
Access Violation when using Visual Interdev to access Oracle
I am running Windows 200 Pro, IIS 5.0 and trying to connect to an Oracle 8.1 database. Prior to applying a security patch to W2k, the ASP... -
Access denied when creating Access application object
In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the... -
BillB #2
Re: MS Access
Looks like your trying to use a page that DW generated on your local machine
for preview purposes. Try using the page you created to do the upload.
Bill
BillB Guest
-
WayneMooresville #3
MS Access
I can't seem to update a "yes/no" field within an Access table. No matter what
value I assign it fails to update the table. What should I do? All other data
types seem to work.
Code below:
================================================== ==================
<cfif IsDefined("FORM.MM_InsertRecord") AND FORM.MM_InsertRecord EQ "form1">
<cfquery datasource="HDRUsers">
INSERT INTO Members (General)
VALUES (
<cfif IsDefined("FORM.General")>
Yes
<cfelse>
No
</cfif>
)
</cfquery>
<cflocation url="index.cfm">
</cfif>
================================================== ==================
WayneMooresville Guest
-
MikerRoo #4
Re: MS Access
Use the attached query -- it has reserved words escaped.
"General" is a reserved word and should not be used as a column name.
Rename the column to something like "IsGeneral" -- use something that
describes the actual purpose of the column.
<CFQUERY datasource="HDRUsers">
INSERT INTO
Members
(
[General]
)
VALUES
(
<CFQUERYPARAM cfsqltype="CF_SQL_BIT" value=#IsDefined
("FORM.General")#>
)
</CFQUERY>
MikerRoo Guest



Reply With Quote

