Table of Contents

TSqlParametersType Enumeration

How the parameters for Direct SQL queries are. Change it only if your database uses positional parameters and it is not ODBC or OLEDB.

Syntax

Namespace: FlexCel.Report

Members

Name Value Description
Automatic 0 FlexCel will try to guess the correct type.
Currently it will return Positional for ODBC and OLEDB Parameters and Named for everything else.
Named 1 Parameter is named. For example, "@param1" or ":Param2"
Positional 2 Name of parameter is not important, and we only care about position.
For example "?"