greenapple.Connectoperations.describeTable C# (CSharp) Метод

describeTable() публичный Метод

gets the attributes of a table
public describeTable ( string table ) : DataTable
table string the table whose attribute is being got
Результат System.Data.DataTable
        public DataTable describeTable(string table)
        {
            return mycon.Filling("describe " + table);
        }