Example #1
0
        public static bool TryQuery(IMySqlQueryable obj, out DataTable table)
        {
            bool result = TryQuery(obj.GetQuerycommand(), out DataTable table2);

            table = table2;
            return(result);
        }
Example #2
0
 public static bool Exists(IMySqlQueryable obj) => Exists(obj.GetQuerycommand());
Example #3
0
 public static void Add(IMySqlQueryable obj) => Execute(obj.GetAddcommand());