Pedro Vicente
Pedro Vicente
this construct in the template chooses the quoted version or not depending on the value being "NULL" ``` nlohmann::json json4; json4["name"] = "NULL"; std::string template5 = "INSERT INTO [my_table] (col1)...
I made a sample project that replicates the bug https://github.com/pedro-vicente/xlnt_sample it uses the STATIC settings with ``` git clone https://github.com/tfussell/xlnt xlnt-1.5.0 # clone missing dependency pushd xlnt-1.5.0 pushd third-party pushd...
These are link errors; you have to make the linker use the xlnt libraries, like this https://github.com/pedro-vicente/xlnt_sample ``` cmake_minimum_required(VERSION 3.17) set(CMAKE_BUILD_TYPE Debug) project (xlnt_sample) set(CMAKE_CXX_STANDARD 17) option(BUILD_STATIC "BUILD_STATIC" OFF) if...
oopsy , I just saw these messages from the github ticket opened 19 days ago . I use for all github things this email [email protected] and since I am "watching"...
@hmb1 >>> The libexpat library is x86 and ncap2 is x64 this cannot be done the cmake/bld.bat script makes sure that all dependencies are built with x64 (or x86) with...
I'm going to use this test case in linux ``` ncks -v area ../data/in_grp.nc out.nc ncap2 -v -s 'area[lat]=100' out.nc out1.nc ```
in windows i get an exception error stack is ``` ncap2.exe!std::vector::operator[](unsigned __int64 _Pos) Line 1219 C++ ncap2.exe!antlr::CircularQueue::elementAt(unsigned __int64 idx) Line 45 C++ ncap2.exe!antlr::InputBuffer::LA(unsigned int i) Line 82 C++ ncap2.exe!antlr::CharScanner::LA(unsigned int...
First I tried master, then "win-fix-ncap2", same results... what are the additions of "win-fix-ncap2"?
>>> Note that ncap2 cannot handle groups - It will only read from the root group right, bad example. I tried with in.nc ``` ncks -v area ../data/in.nc out.nc ncap2...
> I guess a simple fix would be to replace single quote ' for double quote " in windows this done programmatically, not just from the command line