Re: [MySQL] What terminates a query?

2002-12-23 Thread Ashley M. Kirchner
Matt Young wrote: >My sql command pipes its result to a perl program (in batch mode) . but the >perl program has no waf to tell when the query is finished. >HTTP uses a blank line to signal the end. but there is no such thing for >mysql. Why can't you append an extra line to your sql result

Re: What terminates a query?

2002-12-23 Thread Dan Nelson
In the last episode (Dec 23), Matt Young said: > My sql command pipes its result to a perl program (in batch mode) . > but the perl program has no waf to tell when the query is finished. > HTTP uses a blank line to signal the end. but there is no such thing > for mysql. If you are doing something

RE: What terminates a query?

2002-12-23 Thread Fernando Grijalba
What about the semi-colon (;) or (\g)? JFernando ** sql ** -Original Message- From: Matt Young [mailto:[EMAIL PROTECTED]] Sent: December 23, 2002 12:53 To: [EMAIL PROTECTED] Subject: What terminates a query? My sql command pipes its result to a perl program (in batch mode) . but the

What terminates a query?

2002-12-23 Thread Matt Young
My sql command pipes its result to a perl program (in batch mode) . but the perl program has no waf to tell when the query is finished. HTTP uses a blank line to signal the end. but there is no such thing for mysql. - Before po