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

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