Concept Framework 2.0 documentation | Contents | Index |
Name | Type | Access | Version | Deprecated |
Next | function | public | version 1.0 | no |
public function Next() |
Moves to the next row, if possible. |
var Connection=new ADOConnection(); var DataSet=new ADODataSet(Connection); // Check the Open member of the ADOConnection for connection strings Connection.Open(CONNECTION_STRING); DataSet.CommandText="select * from sysobjects"; DataSet.ExecuteQuery(); // print all the ids in the sysobjects table. if (DataSet.First()) { do { echo DataSet.FieldValues["id"].ToString()+"\n"; } while (DataSet.Next()); } DataSet.CloseRead(); |
Documented by Eduard Suica, generation time: Fri Jan 21 18:06:14 2011 GMT | (c)2011 RadGs Software |