MySQL with a dashed line below it.?

can someone explain what this dashed line does? I am using phpmyadmin

Field

default null type name

longtitude float No. 0.001
latitude float No 0.001

thanks.

+4
source share
2 answers

from http://psych.ucsc.edu/AScils/phpmyadmin/Documentation.html

$ cfg ['ShowBrowseComments'] boolean $ cfg ['ShowPropertyComments'] boolean By setting the appropriate variable to TRUE, you can enable the display of column comments in the Browse or Properties window. In view mode, comments are displayed inside the title. In property mode, comments are displayed using a dashed line in CSS format under the field name. The comment is shown as a hint for this field.

So ... It looks like there is a comment on it in the field

edit: you can read the comment using:

SHOW FULL COLUMS FROM tbl_name LIKE 'col_name'; 

(source: http://dev.mysql.com/doc/refman/5.0/en/show-columns.html )

+4
source

I think this means that you have defined a comment for this field, and this PhpMyAdmin is a polite way to show that you can hover over it and read it. enjoy

0
source

All Articles