Re: getting individual lines

2001-12-04 Thread Brett W. McCoy
On Tue, 4 Dec 2001, Martin Pfeffer wrote: > Another way will be to read the statementlines into a hash and execute > exact the ky you want I guess that would depend on how big the file is. You wouldn't want to handle a 100,000 line file that way. -- Brett

Re: getting individual lines

2001-12-04 Thread Martin Pfeffer
Another way will be to read the statementlines into a hash and execute exact the ky you want Martin On Mon, 3 Dec 2001 20:17:36 -0500 (EST), you wrote: >On Mon, 3 Dec 2001, Tyler Longren wrote: > >> I have a HUGE document full of very simple SQL queries. Each query only >> takes up one line i

Re: getting individual lines

2001-12-03 Thread Brett W. McCoy
On Mon, 3 Dec 2001, Tyler Longren wrote: > I have a HUGE document full of very simple SQL queries. Each query only > takes up one line in the file. How could I get every individual line of SQL > and execute it? I know how to query MySQL in perl, so that's fine...I just > don't know how to get

getting individual lines

2001-12-03 Thread Tyler Longren
Hello, I have a HUGE document full of very simple SQL queries. Each query only takes up one line in the file. How could I get every individual line of SQL and execute it? I know how to query MySQL in perl, so that's fine...I just don't know how to get the individual lines to execute. Thanks e