Re: Journaling

2010-08-19 Thread Steve Milburn
wrote: > > The project I'm working on requires Journaling, i.e., track changes made to > the data. > > I'm hoping to do this as a blackbox. My beginning plan is to duplicate the > query that loads the form to a session variable. Then, when the form > submits, compare the sub

Re: Journaling

2010-08-19 Thread Rick Root
Larry, I don't know if this interests you, but I have one case where I use a database trigger (in SQL Server) to log ALL changes to the table. Basically, an audit table is created that logs all the data changes .. here's the trigger It's quite generic, you just have to change the database name

RE: Journaling

2010-08-19 Thread Stephens, Larry V
Thanks. -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: Thursday, August 19, 2010 10:10 AM To: cf-talk Subject: Re: Journaling #form[field]# #query[column]# But I think if I was in your shoes, I would be looking at a database solution. Something

RE: Journaling

2010-08-19 Thread Stephens, Larry V
Thanks. -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Thursday, August 19, 2010 10:07 AM To: cf-talk Subject: Re: Journaling If you know the column names you just do form.columnName to get it. If you don't know the column names you can dynamically co

Re: Journaling

2010-08-19 Thread Ian Skinner
#form[field]# #query[column]# But I think if I was in your shoes, I would be looking at a database solution. Something done with triggers probably. Then it does not matter what user interface is used to update the data. It will be 'journaled' as you put it. ~~~

Re: Journaling

2010-08-19 Thread Martin Franklin
- Original Message - From: "Stephens, Larry V" To: "cf-talk" Sent: Thursday, August 19, 2010 7:02 AM Subject: ***SPAM*** Journaling > > The project I'm working on requires Journaling, i.e., track changes made > to the data. > > I'm

Re: Journaling

2010-08-19 Thread Michael Grant
ry V wrote: > > The project I'm working on requires Journaling, i.e., track changes made to > the data. > > I'm hoping to do this as a blackbox. My beginning plan is to duplicate the > query that loads the form to a session variable. Then, when the form > submits, c

Journaling

2010-08-19 Thread Stephens, Larry V
The project I'm working on requires Journaling, i.e., track changes made to the data. I'm hoping to do this as a blackbox. My beginning plan is to duplicate the query that loads the form to a session variable. Then, when the form submits, compare the submitted data to the origina