Stefan Heymann
Member
Hello Marco,
I have the following problems with the Package Wizard (DOA 3.4.2):
- The Oracle type "integer" is translated to the Delphi type "Double" (which makes it more difficult to access if you want to use integers)
- when you have equally named functions in PL/SQL (which become OVERLOADed functions in delphi), one with a CLOB and the other with a BLOB parameter, both become a TLobLocator parameter which leads to equal signatures.
- When there is an expression like
Regards
Stefan
I have the following problems with the Package Wizard (DOA 3.4.2):
- The Oracle type "integer" is translated to the Delphi type "Double" (which makes it more difficult to access if you want to use integers)
- when you have equally named functions in PL/SQL (which become OVERLOADed functions in delphi), one with a CLOB and the other with a BLOB parameter, both become a TLobLocator parameter which leads to equal signatures.
- When there is an expression like
in the comments of the package (which become Delphi comments, bracketed with (* and *) ), the "*)" in the expression terminates the Pascal comment. You could for example change this toCode:select count (*)
.Code:select count ( * )
Regards
Stefan