I am trying to write my own mysql client.but I send data to server always receive: “packets out of or …”
I am trying to write my own mysql client.but I send data to server always receive: “packets out of or …”
MySQLDriverCS Error: wrong query.You have an error in your SQL syntax;
public bool InsertGuildShare(string RoleName, int RoleID, double Share, int GuildID, int Rank, int FamilyID, string FamilyName) { MySQLConnection conn = null; try { conn = this._Database.DBConns.PopDBConnection(); string cmdText = “Insert into t_guildshare(RoleID,Share,GuildID,RoleName,Rank,FamilyID,FamilyName) VALUES (” + RoleID + “,” + Share + “,” + GuildID + “,`” + RoleName + “`,” + Rank + “,” + […]