simoc
simoc
Maybe the text in the components would be correct if `\u2192` was used instead of `→` in the following Java source code: FPToInt.java: 83: setIcon(new ArithmeticIcon("I→FP", 2)); 103: painter.drawPort(OUT, "F→I",...
I think the next method in easylogging++.cc has the same problem too: https://github.com/amrayn/easyloggingpp/blob/8489989bb26c6371df103f6cbced3fbee1bc3c2f/src/easylogging%2B%2B.cc#L635 What is the best solution? 1. Remove these two lines, because they are not needed. or, 2....
I would also like this Pull Request included in the next version of Easylogging++. I have the same problem compiling with Visual Studio 2019 and this Pull Request solves the...
@yanchoyanev are you able to merge this Pull Request to master?
This sample program works correctly for me and I get the correct output (Easylogging++ v9.97.0 and compiled with g++ 9.4.0).
The sample code in the comment above needs an `INITIALIZE_EASYLOGGINGPP`: ``` //easylogging defines //#define ELPP_DEFAULT_LOG_FILE #define ELPP_NO_DEFAULT_LOG_FILE //dont create log file by default #define ELPP_THREAD_SAFE #define ELPP_FORCE_USE_STD_THREAD #define ELPP_STL_LOGGING //define...
The `Class.forName` step was needed for old versions of java (versions 1.4 and 5, I think), but is no longer required. `csvjdbc.jar` contains a `META-INF/services/java.sql.Driver` file and this causes the...
Is it correct that you have columns named `ID` and `Id` in the same CSV file? Column names in CsvJdbc are case insensitive (same as in a real database such...
This problem is solved by the changes for Issue #37. When database property `defectiveHeaders=true`, any duplicate column name is renamed to COLUMNx, where x is the column index. Case insensitive...
Yes, there are some variations of text files that CsvJdbc does not read correctly. An alternative is to set the following database connection properties so that the text file has...