Re: MySQLGUI problem

2001-10-19 Thread Mike Barber

I have found the MySQL Manager to be incredibly buggy and a pain to even do
the most simplest things.

I would suggest that you try MySQL-Front
http://www.anse.de/mysqlfront/

Very easy to use and very functional.

- Original Message -
From: Sinisa Milivojevic [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, October 19, 2001 10:28 AM
Subject: Re: MySQLGUI problem


 cedric writes:
  MySQLGUI-1.7.5 was working.
  Now, when I start it and put the mouse pointer over it, it disappears.
  Reinstalled only to get the same thing.
 
  Any ideas?
 
  cedric
 

 What operating system do you use ??

 Have you changed X version or window manager ??


 I never heard of something like that.

 --
 Regards,
__  ___ ___   __
   /  |/  /_ __/ __/ __ \/ /Mr. Sinisa Milivojevic [EMAIL PROTECTED]
  / /|_/ / // /\ \/ /_/ / /__   MySQL AB, FullTime Developer
 /_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
___/   www.mysql.com


 -
 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




-
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




Re: problem with using mysqladmin

2001-09-08 Thread Mike Barber

Simple Use MySQL-Front
The interface is a ton better than MySQL Admin and you can do a lot more
with it.

http://www.anse.de/mysqlfront/
- Original Message -
From: Kenneth Wells [EMAIL PROTECTED]
To: 'Farzad Faramarzi' [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Saturday, September 08, 2001 9:07 AM
Subject: RE: problem with using mysqladmin


 Can anyone help me? I'm trying to set up Snort and I have downloaded
 MySQl shareware 3.23.40



 I have a few questions. First, after I install I don't get the icon
 automatically on my taskbar, but I can start it myself and it is there,
 is that normal?



 Second, When I try to add a database via the command prompt or thru the
 gui, it doesn't let me. The command prompt says that it cannot create my
 database error 1006 and at the end it says errno 13.



 The gui I right click and it it lets me put in the database name but
 when I say ok it doesn't create one.



 Has anyone installed snort on windows 2000 before?



 Kenny

 -Original Message-
 From: Farzad Faramarzi [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, September 08, 2001 6:12 AM
 To: [EMAIL PROTECTED]
 Subject: problem with using mysqladmin


 Hi
 I tried to set the password to mysql by using mysqladmin
 and I received the following error message
 -
 ./mysqladmin -u root password 
 ./mysqladmin: connect to server at 'localhost' failed
 error: 'Can't connect to local MySQL server through socket
 '/tmp/mysql.sock' (111)'
 Check that mysqld is running and that the socket: '/tmp/mysql.sock'
 exists!
 ---

 I checked if mysql is running and it does, as you can see here

 ---
 [root@c-dffd70d5 bin]# ps -d
PID TTY  TIME CMD
677 ?00:00:00 safe_mysqld
704 ?00:00:00 mysqld
708 ?00:00:00 mysqld
709 ?00:00:00 mysqld
   1030 pts/100:00:00 bash
   1054 pts/100:00:00 ssh
   1055 ?00:00:00 sshd2
   1086 pts/200:00:00 ps
 

 God, please help me! What am I doing wrong???

 Thanx
 Farzad


 -
 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


 -
 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




-
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




Re: How to do simple stuff

2001-09-06 Thread Mike Barber

http://www.anse.de/mysqlfront/

Use a GUI it's a lot easier
- Original Message - 
From: Attila Soki [EMAIL PROTECTED]
To: MySQL [EMAIL PROTECTED]
Sent: Wednesday, September 05, 2001 11:03 PM
Subject: Re: How to do simple stuff


 hi
 
 | Add a column
 
 add an integer column:
 alter table sometable add somecolumn int;
 
 add an varchar column:
 alter table sometable add somecolumn varchar(255);
 
 see: mysql doc 7.8 Alter table syntax
 
 | Alter a table to fit a different character lengths
 |(say...unlimited in a 1 column)
 
 simply specify the new column parameters:
 
 alter table sometable modify tooshortcolumn varchar(255);
 
 note: unlimited column length not exists.
 if you need a realy BIG character type column try the text types
 (text mediumtext, etc...)
 see mysql doc: 7.3 Column types
 
 sorry i can't understand this:
 | Make a column have a check box instead of characters(VARCHAR...)
 
 bye,
 
 ati
 
 -
 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
 
 


-
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