Ask a Question related to ASP Database, Design and Development.
-
Poppy #1
Action Query in Access
Can anyone tell me if it is possible to execute an access action query from
asp/vbscript code?
TIA
Poppy Guest
-
Access Query
Hi I have written sql query in access database... SELECT email_info.* FROM email_info WHERE email_id='john@test.com.au' AND email_date + 7 < ... -
How to access values of form fields on am action page?
I am sending few form fields to the action page. Here is what it receives (from CF debugging info): Form Fields: 58707001=TBD 587627_01=TBD... -
Access query help
Hi everyone, I need to modify this query from SQL Server for use in Access. Can someone please help me?! SELECT DISTINCT TOP 100 PERCENT... -
Action script to Coldfusion query not working
<cfsetting enablecfoutputonly="YES"> <cfcontent type = "application/x-www-urlform-encoded"> THe following code is called from a Flash... -
MS access SQL query help!
I am creating a database for sports league. I have a table of Leagues, Teams, and Games. I trying to get a listing of the games but I am getting... -
Ray at #2
Re: Action Query in Access
Yes it is.
Ray at work
"Poppy" <paul.diamond@NOSPAMthemedialounge.com> wrote in message
news:%2353U1B$lDHA.2528@TK2MSFTNGP10.phx.gbl...from> Can anyone tell me if it is possible to execute an access action query> asp/vbscript code?
>
> TIA
>
>
Ray at Guest
-
Bob Barrows #3
Re: Action Query in Access
Poppy wrote:
> Can anyone tell me if it is possible to execute an access action
> query from asp/vbscript code?
>
> TIA
Yes.
cn.Open "valid connection string"
cn.NameOfQuery
HTH,
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows Guest
-
Adrian Forbes [ASP MVP] #4
Re: Action Query in Access
Best way of doing this is via the connection object
set objCon = Server.CreateObject("ADODB.Connection")
objCon.Open MyConnectString
objCon.Execute "update table...."
objCon.Close
You can also call action queries via .Execute;
objCon.Execute "MyActionQuery"
"Poppy" <paul.diamond@NOSPAMthemedialounge.com> wrote in message
news:%2353U1B$lDHA.2528@TK2MSFTNGP10.phx.gbl...from> Can anyone tell me if it is possible to execute an access action query> asp/vbscript code?
>
> TIA
>
>
Adrian Forbes [ASP MVP] Guest



Reply With Quote

