On Jan 23, 2008 7:03 AM, <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] writes:
>
> > And I guess... not surprisingly the bookmark page now works too?
>
> One lingering mysql command that is printed when the bookmarks page
> configuration steps is gone through:
>
> From bookmarks page:
> [...]
> After completing the configuration, create useraccounts with the
> following MySQL command:
>
> (wrapped for mail)
> mysql> INSERT INTO user (username, password) VALUES
> ('johndoe', MD5('johndoes_password'));
>
> If I use that command (filling in the johndoe and johndoes_password
> part it fails with this error:
>
> ERROR 1046 (3D000): No database selected
First tell MySQL what database you want to use:
use bookmarks;
INSERT INTO (...);
-James
--
[email protected] mailing list