greenapple.Connectoperations.describeTable C# (CSharp) Method

describeTable() public method

gets the attributes of a table
public describeTable ( string table ) : DataTable
table string the table whose attribute is being got
return System.Data.DataTable
        public DataTable describeTable(string table)
        {
            return mycon.Filling("describe " + table);
        }