Hi there,

Apologies for the cross-post to turbine-dev, but the mails I already 
sent to the torque mailing list today haven't come through, and I wanted 
to pass this on to someone involved with torque.  My first question is 
"is the new torque mailing list working yet?"

I also have some feedback on the torque tutorial. Since it misses out 
the requirement to add all the tables to the id_table, i.e. at start of 
play  the id_table is like this:
=================================================
+-------------+------------+---------+----------+
| ID_TABLE_ID | TABLE_NAME | NEXT_ID | QUANTITY |
+-------------+------------+---------+----------+
|           1 | ID_TABLE   |     100 |       10 |
+-------------+------------+---------+----------+
1 row in set (0.01 sec)
=================================================

And requires these sql inserts

=================================================
mysql> Insert into ID_TABLE Values (2,"BOOK",200,10);
Query OK, 1 row affected (0.00 sec)

mysql> Insert into ID_TABLE Values (3,"AUTHOR",300,10
Query OK, 1 row affected (0.00 sec)

mysql> Insert into ID_TABLE Values (4,"PUBLISHER",400
Query OK, 1 row affected (0.00 sec)
=================================================

to get to this state of affairs

=================================================
mysql> select * from id_table;
+-------------+------------+---------+----------+
| ID_TABLE_ID | TABLE_NAME | NEXT_ID | QUANTITY |
+-------------+------------+---------+----------+
|           1 | ID_TABLE   |     100 |       10 |
|           2 | BOOK       |     220 |       10 |
|           3 | AUTHOR     |     320 |       10 |
|           4 | PUBLISHER  |     420 |       10 |
+-------------+------------+---------+----------+
4 rows in set (0.01 sec)
=================================================

It would be nice if the tutorial mentioned this (apologies if its there 
and I missed it) or even nicer if this happened automatically.

I'd have a go myself, but I already spent all day getting torque to work 
period, so maybe tomorrow ... :-)

CHEERS> SAM



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to