Click or drag to resize
sqx

VectorTableString Method

[nvarchar](max) TableString([int] OptionType)

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public SqlChars TableString(
	SqlInt32 OptionType
)

Parameters

OptionType
Type: System.Data.SqlTypesSqlInt32
[int]

Return Value

Type: SqlChars
[nvarchar](max)
Examples
SQL
declare @V sqx.Vector = sqx.ZeroVector(5)
print @V.TableString(0)
print '*********'
print @V.TableString(1)
print '*********'
print @V.TableString(2)
print '*********'
print @V.TableString(3)
print '*********'
print @V.TableString(4)
/*
[1],[2],[3],[4],[5]
*********
[1] float,[2] float,[3] float,[4] float,[5] float
*********
@1 float,@2 float,@3 float,@4 float,@5 float
*********
@1,@2,@3,@4,@5
*********
(1,@1),(2,@2),(3,@3),(4,@4),(5,@5)*/
See Also