Re: Mysql and binary data insert

2003-10-22 Thread Andrew Shitov
You have to have 'blob' filed in your database? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: call one perl script within another

2003-10-21 Thread Andrew Shitov
my $return_value = eval {$code_or_sub_programme}; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: call one perl script within another

2003-10-21 Thread Andrew Shitov
This will call a new perl process, and may be more expensive on the system. On the other hand I can do <...> But How do I get the reponse of the script. Probably the simpliest way is to make called script a module and run it using either 'use' or 'require'. -- To unsubscribe, e-mail: [EMAIL PROT

Re: Apache::Session vs CGI::Session

2003-10-21 Thread Andrew Shitov
Does opening a new browser causes a new session in either of the two? What for are you going to use sessions? I mean: is threr a real necessity of using some modules? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: lowercase

2003-10-20 Thread Andrew Shitov
$lower_case = lc ($stri); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]