Gentoo Archives: gentoo-dev

From: John Myers <electronerd@××××××××××.com>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] New MySQL doc
Date: Mon, 11 Jul 2005 20:38:42
Message-Id: 200507110634.54091.electronerd@monolith3d.com
In Reply to: [gentoo-dev] New MySQL doc by Chris White
1 On Monday 11 July 2005 21:38, Chris White wrote:
2 > http://dev.gentoo.org/~chriswhite/mysql.html
3 >
4 > Comments, etc are welcome.
5
6 You might want to make
7 Code listing 4.19: Finding our guest user in the user table
8 a little narrower, as it makes the page much wider than my 1,280 pixel wide
9 screen can show.
10
11 I would suggest
12 SELECT Host, User, Password FROM user WHERE User = 'guest';
13 rather than
14 SELECT * FROM user WHERE User = 'guest';
15 which will make the output much, much smaller. You might want to mention the
16 other query in passing for the user to try on their own, however.