If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Retrieving column properties

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-18-03, 21:26
jumpup jumpup is offline
Registered User
 
Join Date: Nov 2003
Location: Sydney
Posts: 4
Arrow Retrieving column properties

Is there an SQL statement l can use from within PHP to extract all the column names, data types etc from a table?

Thanks in advance

P.S First post, this'll email when an answer happens right ?
Reply With Quote
  #2 (permalink)  
Old 11-19-03, 17:52
jumpup jumpup is offline
Registered User
 
Join Date: Nov 2003
Location: Sydney
Posts: 4
How about retrieving column names then ?

Would think there would be an SQL statement to do this ?????
Reply With Quote
  #3 (permalink)  
Old 11-19-03, 18:38
ziobudda ziobudda is offline
Registered User
 
Join Date: Nov 2003
Posts: 1
Re: Retrieving column properties

Quote:
Originally posted by jumpup
Is there an SQL statement l can use from within PHP to extract all the column names, data types etc from a table?

Thanks in advance
for table:
mysql_query("show tables");

for columns
mysql_qeury("show columns from TABLENAME");

Try the query into mysql client and you understand how to use it under PHP.

bye from italy
Reply With Quote
  #4 (permalink)  
Old 11-19-03, 19:06
jumpup jumpup is offline
Registered User
 
Join Date: Nov 2003
Location: Sydney
Posts: 4
Thanks for the info zio

Actually will be running the command in visual basic this time round
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On