Since my original posting, asking how to:
"print out tables in mysql" via out put to a printer.

Thanks to all that responded, big thanks to Edward!

Here is the tip for all Mac users, running 10.2.x and mysql.

goto: http://localhost:631/ ( this program is built-in on 10.2 )
its called CUPS, goto manage printers, and see what name is given for
your printer. ( write it down ) in mine, its: _192_168_0_11

Next;
lets say you db is call Contacts, and you have a table in contacts call phone
this first thing is do the following:

mysql> \P lpr -P _192_168_0_11 (Hit Enter)
PAGER set to lpr -P _192_168_0_11
mysql> select * from phone;
6 row in set (0.08 sec)

mysql \n
It sends output to the screen again. Use it when you want to stop sending
all of that output to the printer.

--
Happy printing,
Richard-


---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to