TurboSQL Guide

Command Parameters

Previous  Top  Next


TurboSQL uses named statement parameters. They are preceded by a colon:

INSERT INTO Customers (Name) VALUES(:Name)

The parameter name is the identifier excluding the colon, i.e. Name in this case. Whenever you refer to a command parameter in one of the API functions or working with a component library, indicate the identifier without the colon.

When working with the ODBC interface, unnamed parameters are supported as well:

INSERT INTO Customers (Name) VALUES (?)