Samael
Samael
to get libavcodec and other related stuff on Fedora you'd need to add the RPMfusion repository then `sudo dnf install -y ffmpeg-devel` which would give: /usr/include/ffmpeg/libavcodec/ /usr/include/ffmpeg/libavdevice/ /usr/include/ffmpeg/libavfilter/ /usr/include/ffmpeg/libavformat/ /usr/include/ffmpeg/libavresample/...
+1 for this and doing a release to maven central: #2
example connection strings for the various databases are in the readme file. It looks like you should be doing something like: ``` ddbc:sqlserver://localhost,1433?user=sa,password=MyPassw0rd,driver=ODBC Driver 17 for SQL Server,trusted_connection=yes ``` I...
That suggests you can't connect to SQL Server on localhost regardless of ddbc. Perhaps worth trying loopback address instead. Also is the port exposed? I'd test connectivity with telnet just...
I think it could be fixed by changing that line to: ``` static if(is(typeof(o.id) == int)) { o.id = insertId.coerce!int; } else if(is(typeof(o.id) == uint)) { o.id = insertId.coerce!uint; }...
ddbc hasn't seen much active development recently but I'm happy to merge in pull requests that help move the project forward. I've added a `SECURITY.md` file to the project now...
it's not in the interface (I checked Statement and DataSetWriter as well): https://github.com/buggins/ddbc/blob/d5a8a1ff9671b81dae098b75f37431669daf7ae4/source/ddbc/core.d#L353-L391
When dowloading [postgresql-10.4-1-windows-binaries.zip](https://get.enterprisedb.com/postgresql/postgresql-10.4-1-windows-binaries.zip) or [postgresql-10.4-1-windows-x64-binaries.zip](https://get.enterprisedb.com/postgresql/postgresql-10.4-1-windows-x64-binaries.zip) the zip file has a lib directory with libpq.dll in it. This may help with #65
do you need to specify 32 bit? What if you just do `dub build`? I'm generally on Linux/Mac but have used ddbc in Windows before and it built fine. Having...
A reasonable solution may be to remove the dll from the repo and require windows users to supply the path to a local installation. Perhaps using `"preGenerateCommands-windows": []` to check...