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);
        }