Re: parse hash to module

2005-12-23 Thread JupiterHost.Net
Any drawbacks if I try some kind of asyncrhonous call if possbile ??. Can you give us some code of what you mean by "asyncronouse call"? It's a db interface, - but I don't thinks it's relevant but maybe just exit my module after having delivered the data to the dbi ?? Sorry still no idea

Re: parse hash to module

2005-12-22 Thread Ditlev, Unix Consulting
"JupiterHost.Net" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] > >>>You can do either but a refernce is more efficient: >> >> Maybe I should use a reference as you suggest now Iam using ... >> >> MyModule::function(%person) >> >> and in my function : >> my %person = @_; >> >> F

Re: parse hash to module

2005-12-19 Thread JupiterHost.Net
You can do either but a refernce is more efficient: Maybe I should use a reference as you suggest now Iam using ... MyModule::function(%person) and in my function : my %person = @_; For now I don't think I have an performance issue, - but ofcourse for now I have 2 copies. 2 copies is tw

Re: parse hash to module

2005-12-19 Thread Ditlev, Unix Consulting
"JupiterHost.Net" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] > Ditlev, Unix Consulting wrote: >> Hi There, > > Hello, > >> I have some problems undestanding how to parse a hash to module of my >> own. >> >> I have this hash %person : >> $person{$Name}{Name} = "xxx"; >> $pers

Re: parse hash to module

2005-12-18 Thread JupiterHost.Net
Ditlev, Unix Consulting wrote: Hi There, Hello, I have some problems undestanding how to parse a hash to module of my own. I have this hash %person : $person{$Name}{Name} = "xxx"; $person{$Name}{Id} = ; @( $person{$Name} {Friends} ) But what's the correct method for parsing this hash to

RE: parse hash to module

2005-12-18 Thread Charles K. Clarkson
Ditlev, Unix Consulting wrote: : I have some problems undestanding how to parse a hash to module of my : own. : : I have this hash %person : : $person{$Name}{Name} = "xxx"; : $person{$Name}{Id} = ; : @( $person{$Name} {Friends} ) : : But what's the correct method

parse hash to module

2005-12-18 Thread Ditlev, Unix Consulting
Hi There, I have some problems undestanding how to parse a hash to module of my own. I have this hash %person : $person{$Name}{Name} = "xxx"; $person{$Name}{Id} = ; @( $person{$Name} {Friends} ) But what's the correct method for parsing this hash to my module ??? I try something like mymodu