Enigma - 2004-11-26

Logged In: YES
user_id=1128066

The swgcraftparser.php script compensates for the discrepencies between the category names. If you look at the output from that script, it will tell you whether or not it found a matching category (FOUND or NOT FOUND).

As for looking up resource names, case sensitivity should not have any effect. MySQL ignores these discrepencies.

For example:
mysql> select * from resources where name='Idoikiam';
+------+----------+----------+----+-----+-----+-----+----+-----+-----+----+-----+-----+-----+
| id | category | name | ER | CR | CD | DR | FL | HR | MA | PE | OQ | SR | UT |
+------+----------+----------+----+-----+-----+-----+----+-----+-----+----+-----+-----+-----+
| 3795 | 6008 | Idoikiam | 0 | 695 | 999 | 692 | 0 | 603 | 966 | 0 | 999 | 794 | 753 |
+------+----------+----------+----+-----+-----+-----+----+-----+-----+----+-----+-----+-----+
1 row in set (0.08 sec)

mysql> select * from resources where name='idoikiam';
+------+----------+----------+----+-----+-----+-----+----+-----+-----+----+-----+-----+-----+
| id | category | name | ER | CR | CD | DR | FL | HR | MA | PE | OQ | SR | UT |
+------+----------+----------+----+-----+-----+-----+----+-----+-----+----+-----+-----+-----+
| 3795 | 6008 | Idoikiam | 0 | 695 | 999 | 692 | 0 | 603 | 966 | 0 | 999 | 794 | 753 |
+------+----------+----------+----+-----+-----+-----+----+-----+-----+----+-----+-----+-----+
1 row in set (0.00 sec)