Get all the fields properties of an SQL in a 2-Dim array.
Namespace:
TornadoAssembly: Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)
Syntax
| C# |
|---|
public string[,] Get_FieldMatrix( string Unit ) |
| Visual Basic (Declaration) |
|---|
Public Function Get_FieldMatrix ( _ Unit As String _ ) As String(,) |
Parameters
- Unit
- Type: System..::.String
Return Value
Dim ret(,) as string = obj.Get_FieldMatrix(unit)
Remarks
Dim r As Integer, c As Integer Dim Carr(,) As String = obj.Get_FieldMatrix() Response.Write("<P><Center><H3>Export Field Matrix</H3><table class=ts cellspacing='1'>") For r = 0 To UBound(Carr, 2) Response.Write("<tr>") For c = 0 To UBound(Carr, 1) If Carr(c, r) = "" Then Carr(c, r) = " " Response.Write("<td class=nr align=center>" & Carr(c, r) & "</td>") Next c Response.Write("</tr>") Next r Response.Write("</table></center>")