C# > System.Data > DataTable DataTable is a table in memory data. When accessing DataTable objects in DataSet they are case sensitive. We can display data from it in controls such as DataGridView. Properties: Columns: collection of columns Rows: collection of rows DefaultView: customized view of the table that may include a filtered view, or a cursor position. Example: Create a new DataTable System.Data.DataTable table = new DataTable("myTable"); Other examples:
C# >System.Data System.Data namespace contains classes that represent ADO.NET architecture. ADO.NET efficiently manages data from multiple data sources.
FOR loop_counter IN [REVERSE] lowest_number..highest_number LOOP {.statements.} END LOOP; Example: begin for i in 1..10 loop DBMS_OUTPUT.PUT_LINE (i); end loop ; end ; /