Hello Chris, I have a problem with the IDE, version 2017 R3 build 1858. It happens that being in debug mode, in any part of the code, the system hangs. The error is not constant, so I deduce that it is not due to an error in the code. In addition, the same system already compiled, closes frequently without following the same pattern of execution. Any idea what may be causing it? Thank you!
- Menna Pablo Javier
- PowerBuilder
- Friday, 10 May 2019 16:13 PM UTC
- Page :
- 1
There are no replies made for this question yet.
However, you are not allowed to reply to this question.
However, you are not allowed to reply to this question.
May I suggest ....
1) OptSelectBlob is not supported by SNC
2) BinTxtBlob=1 means non-Unicode data. Whereas PB2017Rx is fully Unicode
3) Make sure that all DBMS interactions check the DB return status code(s).
4) Not sure why your App is turning off ANSI_Warnings and NULLs.
Try commenting these "SET" commands out as its not common a practice.
5) Try tracing your app's EXE by adding the " /pbtrace" to the EXE start-up
6) Try adding in an SQL trace ... (SQLCA.DBMS = "TRACE SNC")
7) Review your App's code for Unicode compliance. PB9 was ANSI based
- ANSI defined external functions => Unicode
- ANSI based PowerScript commands => Unicode
8) DB Date formats should always be CCYY-MM-DD internally
9) DB DateTime formats should always be CCYY-MM-DD HH:MM:SS:FFF internally
Also... did you run the PB 2019 "Migration Assistant" on your PB 9 App source before migration to see if it logged any PB 9 features that need to be cleaned up for PB 2017?
HTH
Regards ... Chris