I tried sourcing load_player.sql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.0.85-community-nt MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use PEQ
Database changed
mysql> source C:\t\load_player.sql
ERROR:
Failed to open file 'player_tables\aa_timers.sql', error: 2
mysql>
I tested it with another file and that woirked fine
mysql> source C:\t\t.sql
+------------+-------+------+
| type | npcID | temp |
+------------+-------+------+
| Animation1 | 500 | 0 |
+------------+-------+------+
1 row in set (0.00 sec)
mysql>
I tried it via HeidiSQL
USE `peq`;
/* Loading file "C:\t\load_player.sql" into query tab #1 ... */
source player_tables/aa_timers.sql;
/* SQL Error (1064): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'source player_tables/aa_timers.sql' at line 1 */
What should i do?
|