vegasjoe has asked for the wisdom of the Perl Monks concerning the following question:
#build a dynamic sql statement my $Sql_str = &BuildSQLString($cMssFactBag); #I print here I get no SQL statement sub BuildSQLString { ... $dynam_Sql_stmt = join(" ",$dynam_Sql_stmt, "from $p_str_tblName where + RECORDXFEREDTOFILE = 'I'"); #I print here I a SQL statement return $dynam_Sql_stmt; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Subroutine Produces Output but Fails to Return to Parent
by imp (Priest) on Jan 18, 2007 at 23:04 UTC | |
|
Re: Subroutine Produces Output but Fails to Return to Parent
by shigetsu (Hermit) on Jan 18, 2007 at 23:34 UTC | |
by vegasjoe (Sexton) on Jan 18, 2007 at 23:40 UTC | |
|
Re: Subroutine Produces Output but Fails to Return to Parent
by chargrill (Parson) on Jan 18, 2007 at 23:26 UTC | |
|
Re: Subroutine Produces Output but Fails to Return to Parent
by derby (Abbot) on Jan 18, 2007 at 23:05 UTC | |
|
Re: Subroutine Produces Output but Fails to Return to Parent
by liverpole (Monsignor) on Jan 18, 2007 at 23:09 UTC |