I did.
'show databases;' doesn't work as well. I can choose a database ('use test'), create a table, but I can't either fill the table nor drop it.
I am not sure which privileges my user has, but it worked with earlier versions of MySQL and I don't think I'm doing anything differently.
Did anyone else experience similar problems on Mac OS X 10.3?
Martin.
Yes:
http://bugs.mysql.com/bug.php?id=2058
My guess is that this is a problem with the readline library on Mac OS X, because if I compile from source with the --with-readline option, I see this problem, and without that option, I don't. If you're willing to try compiling from source, that might help you. Here are the commands I use to build the distribution (run them through sh):
PREFIX="/usr/local/mysql" PORT=3306
HANDLERS="--without-berkeley-db"
BENCH="--without-bench"
DOCS="--without-docs"
OTHER="--enable-local-infile --with-embedded-server --with-vio --with-openssl --with-extra-charsets=all"
rm -f config.cache
CXX=gcc \
./configure \
--prefix=$PREFIX \
--localstatedir=$PREFIX/data \
--with-unix-socket-path=$PREFIX/mysql.sock \
--with-tcp-port=$PORT \
$HANDLERS $BENCH $DOCS $OTHER
Am 07.01.2004 um 23:45 schrieb fr0g:
Did u choose a database before that?
Martin Hampl wrote:
Hi,
I just installed version 4.1.1 on Mac OS X.
If I enter 'show tables;' after starting mysqld_safe it just says
ERROR: No query specified
The same happens if I try 'CREATE DATABASE menagerie;'
Why?
Thanks, Martin.
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
-- Paul DuBois, MySQL Documentation Team Madison, Wisconsin, USA MySQL AB, www.mysql.com
MySQL Users Conference: April 14-16, 2004 http://www.mysql.com/uc2004/
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]