Click or drag to resize
CCompiledQueryImplBaseGetDbTableSchema Method
Returns the expected result table schema of the query.

Namespace: PDTec.IceNet.Sdk.Database
Assembly: PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntax
C#
protected abstract DbTableColumn[] GetDbTableSchema()

Return Value

Type: DbTableColumn
The result table schema.
Remarks

For ID fields specify AttrValueType.String as value type. The ID values will be automatically converted.

If AttrValueType.Integer is specified, the query must produce a 64-bit integer value (BIGINT, NUMBER, etc.). To define a 64-bit literal on SQL Server use CAST (0 AS BIGINT).

See Also