mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-04-26 01:47:17 -05:00
Mysql's type validation sucks.
(Fixed GenV trainer name string getting inserted as text instead of binary.)
This commit is contained in:
parent
fca5cae92d
commit
92d831abaf
|
|
@ -690,7 +690,7 @@ namespace PkmnFoundations.Data
|
|||
result[13] = new MySqlParameter("@TimeWithdrawn", record.TimeWithdrawn);
|
||||
result[14] = new MySqlParameter("@pid", record.PID);
|
||||
result[15] = new MySqlParameter("@TrainerOT", record.TrainerOT);
|
||||
result[16] = new MySqlParameter("@TrainerName", record.TrainerName);
|
||||
result[16] = new MySqlParameter("@TrainerName", record.TrainerName.RawData);
|
||||
result[17] = new MySqlParameter("@TrainerCountry", record.TrainerCountry);
|
||||
result[18] = new MySqlParameter("@TrainerRegion", record.TrainerRegion);
|
||||
result[19] = new MySqlParameter("@TrainerClass", record.TrainerClass);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user