Your documentation states:
As you can see, the parameters for Create and Connect are different. For IBX, I never understood why, -except- that it directly passes them to the API.Use the Params property to specify the connection parameters, such as user name, password, role etc. For example:
user_name=sysdba
password=masterkey
sql_role_name=role1
lc_ctype=WIN1252
If you are using Params property for creating a new database with the CreateDatabase function, you should set params like it is shown below:
USER "SYSDBA"
PASSWORD "masterkey"
PAGE_SIZE 4096
Why can't you make this the same for both?! It's much easier to use! Please add compatibility for name=value parameters for CreateDatabase.