Concept Framework 2.0 documentation | Contents | Index |
Name | Type | Access | Version | Deprecated |
ListColumns | function | public | version 1.0 | no |
array ListColumns(string table="",string columns="") |
table | the table name |
columns | the column name (optional) |
List columns in a table. |
pragma warnings off include DataBases.con class Main { function Main() { var Connection=new ADOConnection(); var DataSet=new ADODataSet(Connection); Connection.Open("Driver={SQL Server};Server=(local);Database=iadc;Uid=iadc;Pwd=iadc;"); echo Connection.ListTables(); echo Connection.ListColumns("sysobjects"); Connection.Close(); echo Connection.LastError(); } } |
Documented by Eduard Suica, generation time: Fri Jan 21 18:06:14 2011 GMT | (c)2011 RadGs Software |