perl object in frames

2001-08-28 Thread Lukas Zapletal
Hello all, QUestion for ppl who already developed app. w. frames. I want to use the approach of two directories: /top: /top/base.epl - for top frame /top/index.phtml - top frame data /main: /main/base.epl - for main frame /main/index.phtml /main/login.phtml etc. Is this a good approach? Rega

Re: Help on using DBIx

2001-08-28 Thread Angus Lees
On Tue, Aug 28, 2001 at 03:57:45PM -0500, Boyd, David wrote: > DBIx::Recordset::Undef ('set'); > $fdat{'!DataSource'} = GetDSN(); > $fdat{'!Table'} = 'note'; > $fdat{'!Fields'} = 'MAX(note.note_key) AS dave'; > $fdat{'=search'} = 'ok'; > > *set = DBIx::Recordset->Execute({%fdat}); >

RE: Help on using DBIx

2001-08-28 Thread Boyd, David
Here is the resulte of when I use the debug=2 This result is from using the below code: DBIx::Recordset::Undef ('set'); $fdat{'!DataSource'} = GetDSN(); $fdat{'!Table'} = 'note'; $fdat{'!Fields'} = 'MAX(note.note_key) AS dave'; $fdat{'=search'} = 'ok'; *set = DBIx::Recordset->Exe

Re: Help on using DBIx

2001-08-28 Thread Gerald Richter
> What is the difference between these statemens: > Should be the same if $DSN and GetDSN and $Table and 'note' are the same. BTW. The use of \%fdat instead of {%fdat} is a little fater If it still doesn't work, set $DBIx::Recordset::Debug = 2 before any access and watch the log output Geral

RE: Help on using DBIx

2001-08-28 Thread Boyd, David
What is the difference between these statemens: DBIx::Recordset::Undef ('set'); *set = DBIx::Recordset -> Search ({'!DataSource' => $DSN,'!Table' => $Table,'$fields' => 'MAX(note.note_key) AS dave'}) ; push @debugMessage, "new set{dave} = $set{dave}"; DBIx::Recordset::Undef ('set'); $fdat{'!Dat