mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 13:45:42 +12:00
Fix shit
This commit is contained in:
parent
906192606c
commit
e5e7708aac
1 changed files with 1 additions and 1 deletions
|
@ -4064,7 +4064,7 @@ namespace HISP.Server
|
||||||
db.Open();
|
db.Open();
|
||||||
MySqlCommand sqlCommand = db.CreateCommand();
|
MySqlCommand sqlCommand = db.CreateCommand();
|
||||||
|
|
||||||
sqlCommand.CommandText = "SELECT ItemId,RandomId FROM ShopInventory WHERE ShopID=@shopId";
|
sqlCommand.CommandText = "SELECT ItemId,RandomId,Data FROM ShopInventory WHERE ShopID=@shopId";
|
||||||
sqlCommand.Parameters.AddWithValue("@shopId", shopId);
|
sqlCommand.Parameters.AddWithValue("@shopId", shopId);
|
||||||
sqlCommand.Prepare();
|
sqlCommand.Prepare();
|
||||||
MySqlDataReader reader = sqlCommand.ExecuteReader();
|
MySqlDataReader reader = sqlCommand.ExecuteReader();
|
||||||
|
|
Loading…
Add table
Reference in a new issue