I'm trying to create a table via the exe_sql statement which needs to contain a boolean field.
IMPORTANT: DFC needs to identify this column as boolean so that I can invoke the IDfCollection.getBoolean() method on it.
The back end is Oracle and I'm executing the command as dmadmin.
Here is my statement:
EXECUTE exec_sql with query='CREATE TABLE my_policy (
policy_name char(32) not null,
description char(64),
policy_enabled boolean not null)'
I get the following error:
Error occured during query execution :[DM_SERVER_E_EXEC_SQL]error: "The execsql method failed due to a database error: ORA-00902: invalid datatype
Any ideas?