PDA

View Full Version : MySql Administrator rules :)


nikos101
11-30-2007, 03:13 PM
I find that MySql Administrator is a much more powerful and intuitive way to access databases than phpMyAdmin. I think I will be using this for all my projects now.

What are your opinions?

guelphdad
11-30-2007, 03:21 PM
HeidiSQL myself.

nikos101
11-30-2007, 03:24 PM
ah never heard of it before, I'll take a look :)

barkermn01
11-30-2007, 03:34 PM
What ????
phpmyadmin uses root login you dont get higher then root login if you are using cpanel it is built different then normall .

if you are using php myadmin and have root access you can do any thing you want with that sql can do.

Most of them are the Same just store data differntly and little differnt to access but they do the same things and phpmyadmin uses all the fetchers of mySQL nd there are other phpmyadmin rojects that do differnt forms of SQL

nikos101
11-30-2007, 04:34 PM
fair enough. Thanks for your input

nikos101
12-04-2007, 01:57 PM
one thing is annoying me though, MySQL query browser does not like comments in SQL statements. Is there a way to tell it to ignore this?

arnyinc
12-04-2007, 02:37 PM
one thing is annoying me though, MySQL query browser does not like comments in SQL statements. Is there a way to tell it to ignore this?

You need dash dash space for comments:

SELECT *
-- I'm a comment
FROM
mytable;

nikos101
12-04-2007, 03:00 PM
thx 4 that