An indooGrid Documented Class Library

dataAccess.getDataTable Method 

Function retrieve data from database as new table (added to dataAccess dataset).

[Visual Basic]
Public Function getDataTable( _
   ByVal String As String, _
   Optional ByVal String As String = "", _
   Optional ByVal Hashtable As Hashtable = Nothing _
) As DataTable
[C#]
public DataTable getDataTable(
   String sql,
   String tableName,
   Hashtable parameters
);

Parameters

sql
SQL statement for retrieve datatable.
tableName
Optional. Dataset table name. When omitted a new generated unique table name is created.
parameters
Optional. SQL parameters for specified sql statement.

Return Value

Remarks

See Also

dataAccess Class | Indoo.Data Namespace