What Unit are the SQLTypes Defined in ???
Posted: Wed 07 Nov 2012 20:14
Help
What Unit are the SQLTypes Defined in? They are in IBSQL in Interbase.
case IBSQL.SQLType of
SQLUnknown : Result := 'Unknown';
SQLSelect : Result := 'Select';
SQLInsert : Result := 'Insert';
SQLUpdate : Result := 'Update';
SQLDelete : Result := 'Delete';
SQLDDL : Result := 'DDL';
SQLGetSegment : Result := 'GetSegment';
SQLPutSegment : Result := 'PutSegment';
SQLExecProcedure : Result := 'ExecProcedure';
SQLStartTransaction : Result := 'StartTransaction';
SQLCommit : Result := 'Commit';
SQLRollback : Result := 'Rollback';
SQLSelectForUpdate : Result := 'SelectForUpdate';
SQLSetGenerator : Result := 'SetGenerator';
else
Result := '????';
Mark Moss

What Unit are the SQLTypes Defined in? They are in IBSQL in Interbase.
case IBSQL.SQLType of
SQLUnknown : Result := 'Unknown';
SQLSelect : Result := 'Select';
SQLInsert : Result := 'Insert';
SQLUpdate : Result := 'Update';
SQLDelete : Result := 'Delete';
SQLDDL : Result := 'DDL';
SQLGetSegment : Result := 'GetSegment';
SQLPutSegment : Result := 'PutSegment';
SQLExecProcedure : Result := 'ExecProcedure';
SQLStartTransaction : Result := 'StartTransaction';
SQLCommit : Result := 'Commit';
SQLRollback : Result := 'Rollback';
SQLSelectForUpdate : Result := 'SelectForUpdate';
SQLSetGenerator : Result := 'SetGenerator';
else
Result := '????';
Mark Moss