예제 #1
0
 public static Dictionary <string, object> GetUser(string uuid)
 {
     return(MySqlite.GetLine(
                "select * from users " +
                "where uuid = ? ",
                new object[] { uuid }
                ));
 }