A Goverment department where i worked before used both mainframe and GnuCOBOL. GnuCOBOL is used for serious work, processing financial records interfacing with banks without any issue. It is a very robust compiler.
Using ODBC you can CRUD tables on Access
Using ODBC you can CRUD tables onAccess
Do sudo find / -iname "libcobrts64_t.*" If you find the library libcobrts64_t.so.2 you can make soft link ln -s libcobrts64_t.so.2 libcobrts64_t.so.3
Follow this guide, ask if you're experiencing any issues https://open-vsx.org/extension/OlegKunitsyn/gnucobol-debug
Hi Federico, I downloaded the latest tp-debugger and tried to use it on windows 11. The debugger is not working as shown on the screenshot attached, version TP-COBOL-DEBUGGER release 2.2.5 Package 23-02-2020 doesn't work but version TP-COBOL-DEBUGGER release 2.2.4 Package 22-02-2020 works fine. I don't know what was changed but it broke the debugger.
Maybe if you can provide a minimal example of the program with the code that causes the error.
Hi László, Could you please try to compile this program on Netbeans, i have eclipse i don't know how to import Netbeans project. I think this changes might work but it will need to be tested first. import java.io.UnsupportedEncodingException; public void setEchoChar(Character c) { String text = getText(); //24042021 convert to UTF8 String original = new String(text); try { byte[] utf8Bytes = original.getBytes("UTF8"); byte[] defaultBytes = original.getBytes(); text = new String(utf8Bytes, "UTF8");...