petey1
6th October 2008, 17:23
Is there a command to override standard DAL in my custom script? I know it's stupid, but there's a few bugs in standard LN processing and I need to have end user change a few field values.

I can go into GTM and override DAL there, but I have a session that I need to have the end user change and not the programmer.

thanks in advance.

zardoz
6th October 2008, 18:14
Why not customize the DAL?

petey1
6th October 2008, 18:38
i don't own the code..

zardoz
6th October 2008, 19:00
A good reason...

Maybe (a little bit complicated) solution could be to do a type 4 session (that doesnt uses the DAL by default) and doing manually db.insert(), db.delete() and db.update() - this assures that DAL logic isn't used at all. Naturally, you have to implement manually all the choices that normally are in the 1.2.3 type sessions.