Some new features in myterm, extensible mysql command line
client:TailEver found yourself running the same query over and
over again to see if a table has got new content, just waiting
for that magic row to appear? The tail command will watch for new
lines in a table, just like you might tail a log file in Linux.
Example:
- myterm> tail -f bid
- +--------+---------+-----------+--------+---------------------+
- | bid_id | item_id | bidder_id | price | created |
- +--------+---------+-----------+--------+---------------------+
- | 67925 | 107751 | 81594 | 92500 | 2010-01-20 19:12:58 |
- | 67926 | 34248 | 32530 | 10000 | 2010-01-20 19:12:59 |
- | 67927 | 111211 | 108032 | 22900 | 2010-01-20 19:12:59 |
- | 67928 | 116016 | 46720 | 90400 | 2010-01-20 19:13:00 |
- | 67929 | 129101 | …