Vladimiro Bellini

Results 45 comments of Vladimiro Bellini

**update** Ok. I manually edited the file CMakeCache.txt and edited line 194 replacing: **GEOS_LIBRARY:FILEPATH=/usr/lib64/libgeos_c.so** with: **GEOS_LIBRARY:FILEPATH=/usr/local/lib/libgeos_c.so** now when i enter "cmake .." at console it says: -- \* Configured options...

**ok. more errors:** sudo make **i got:** Scanning dependencies of target mapcache [ 2%] Building C object CMakeFiles/mapcache.dir/lib/buffer.c.o [ 4%] Building C object CMakeFiles/mapcache.dir/lib/source_wms.c.o [ 6%] Building C object CMakeFiles/mapcache.dir/lib/strptime.c.o...

bumping this also +1

thanks a lot! ill test it and let you know :)

Hi, i tested and got an error (pymssql.OperationalError: (20002, 'DB-Lib error message 20002, severity 9:\nAdaptive Server connection failed ) i installed pymssql and this is what i did with config.py...

UPDATE 4: I successfuly used pymssql by hardcoding conn engine string. But now i have the following issue when the create user table is executed: > sqlalchemy.exc.OperationalError: (pymssql._pymssql.OperationalError) (1919, b"Column...

Hi! yes! i made that change at models.py, i got a new one thats at the insert step: ![imagen](https://user-images.githubusercontent.com/4071796/114946667-fe26d800-9e21-11eb-9f87-f4ee5ff9cdc4.png) for this, i did a manual sql insert and then i...

ok, this reformat worked for me. main.py frome line 95: ``` # # construct the engine for sqlalchemy if odbc_kwargs: db_url += ";".join(f"{k}={v}" for k, v in odbc_kwargs.items()) conn_string =...

Hi! sorry about the delay. This is what i try and didnt work: creds = SqlCreds(server="SERVERNAME", database="DB", username="USERNAME", password="PASSWORD") creds = SqlCreds(server="SERVER\\INSTANCE", database="DB", port=MYPORT) i always got "pyodbc.InterfaceError: ('28000', "[28000]...