Home > Archive > PHP Language > March 2008 > mysql_fetch_field() and the Comments Property?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
mysql_fetch_field() and the Comments Property?
|
|
| ashore 2008-03-03, 10:08 pm |
| I know there's a more appropriate group for this question, and I've
posted it there for some time now with no response. So apologies,
guys, but I gotta know about this.
Isn't there some way/syntax to get at subject property in a PHP/MySQL
table schema? PHPMyAdmin is able to retrieve it, and I hope that it's
not an artifact of that tool.
The mysql_fetch_field() gets everything else, it appears, so ????
Thanks, all.
AS
| |
| pritaeas@gmail.com 2008-03-04, 8:02 am |
| On Mar 4, 2:27=A0am, ashore <shor...@gmail.com> wrote:
> I know there's a more appropriate group for this question, and I've
> posted it there for some time now with no response. So apologies,
> guys, but I gotta know about this.
>
> Isn't there some way/syntax to get at subject property in a PHP/MySQL
> table schema? =A0PHPMyAdmin is able to retrieve it, and I hope that it's
> not an artifact of that tool.
>
> The mysql_fetch_field() gets everything else, it appears, so ????
>
> Thanks, all.
>
> AS
Do you mean this ?
http://dev.mysql.com/doc/refman/5.0...ow-columns.html
| |
|
|
| ashore 2008-03-04, 8:02 am |
| Thanks. With a bit of further research, I find the following SQL does
it: (keyword FULL does the trick)
SHOW FULL COLUMNS FROM ...
AS
|
|
|
|
|