Ask a Question related to Coldfusion Database Access, Design and Development.
-
stephenmbell #1
Using MS Access as back end, how do i.....
I am looking to get the ID of the last inserted record in an msaccess db. I
know in sql server you can select @identity or @@identity - but this doesnt
work in msaccess.
any help would be greatly apprecitated.
ty
smb
stephenmbell Guest
-
Saving arabic data back into an Access table
I am trying to save arabic text from Flash 8 to an Access table through ASP. Please help me fix this issue. I am using the following code in... -
bring back text as hyperlink from access .asp
i'm try to bring back txt from an access database into a table in .asp and would like to make the txt a hyperlink to a different area of a website.... -
How to restrict the user to go back ones the user haslogged out. Or, if he goes back, how to generate custom errorfor
:music; How to restrict the user to go back ones the user has logged out. Or, if he goes back, how to generate custom error for Page Expire ? :music; -
"Back end not found. Or back end is busy"
Hello, I get this message when I try to connect to my IDS 9.4 via the bde16. I use the client version 4 (sqld_inf.dll). The version 5 gave me... -
Converting from Access back end to SQL Server
I have a web site that uses an Access 2000 back end. Most of the recordsets use the rsName.open "qryName"... method. So far, in converting to a... -
The ScareCrow #2
Re: Using MS Access as back end, how do i.....
@@identity does work in ms access as long as your using 2000 +
But the following will work as well
Select Max(ID) As maxid
from tableName
But you need to enclose the insert query and the select query in
cftransaction, to ensure that both queries are performed as one
Ken
The ScareCrow Guest
-
Dan Bracuk #3
Re: Using MS Access as back end, how do i.....
I always add the biggest where clause I can produce to the query suggested by The ScareCrow.
Dan Bracuk Guest



Reply With Quote

