Ask a Question related to Coldfusion Database Access, Design and Development.
-
VMISteve #1
Pause between queries
I'm using CFMX with a Visual FoxPro database. I have a page that contains both
a Delete query and a Select query that access the same table. The Delete query
deletes certain records that belong to a sample id. The Select query then
queries the table to see if there are any records remaining for that sample id.
Sometimes, but not always, Cold Fusion will process the Delete query for a
sample id. and then the Select query will return a non-empty recordset for that
sample id. even though the Delete query completely removed all records for the
sample id. It's as if the server performs the Select query before the Delete
query has completely finished.
Is there a way to force Cold Fusion to pause after one query before processing
the next one?
VMISteve Guest
-
buffer and pause
hi there I was wondering if there is a way to keep the buffer when pausing the stream. I experience that when i pause a stream (pause(true))... -
Queries Of Queries Single Quote Problem
When using queries of queries I'm having the following issue. Select Company_ID From qry_MyQuery Where Company_NM = 'MyString''s' <----... -
Pause a gif
I am making a screen in Director 7 for children at school to investigate buttons. I want to have a screen with still gifs and when buttons are... -
pause all
The following pause action: function funcAll(mc, func) { mc.func = func; mc.func(); for (childMC in mc) { if (typeof (mc) == "movieclip") {... -
Pause?
Hi....I would like to do the following: - on mouseUp me --pause for 2 seconds --then go to frame 164 end I know you can pause on the Tempo... -
paross1 #2
Re: Pause between queries
Maybe it is a query cache issue. Or, perhaps try using CFTRANSACTION with a COMMIT between the delete and select, if FoxPro database supports it.
Phil
paross1 Guest
-
VMISteve #3
Re: Pause between queries
Thanks for the suggestion. I'll try the CFTRANSACTION.
VMISteve Guest



Reply With Quote

