View Single Post
  #6  
Old 08-05-2012, 10:05 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by Maceblade View Post
Im sorry for the newb question, but im trying to figure out how to open up more than 5 dynamic zones. IDK how to show a list of variable or tables inside mysql bc im very new at this stuff... I was curious if anyone knew of the exact command to punch in or the 'xxxxxxxxx'; portion of it. Thanks
Code:
mysql> describe launcher;
+----------+---------------------+------+-----+---------+-------+
| Field    | Type                | Null | Key | Default | Extra |
+----------+---------------------+------+-----+---------+-------+
| name     | varchar(64)         | NO   | PRI |         |       |
| dynamics | tinyint(3) unsigned | NO   |     | 0       |       |
+----------+---------------------+------+-----+---------+-------+
2 rows in set

mysql> select * from launcher;
+------+----------+
| name | dynamics |
+------+----------+
| zone |        5 |
+------+----------+
1 row in set
That is where you set your dynamics.
Reply With Quote