mirror of
https://github.com/mariadb-corporation/mariadb-connector-cpp.git
synced 2025-07-22 18:27:20 +00:00

Also internally used class Value is changed to use SQLString, instead of (smart) pointer to it. Added missing SQLString object creation/destruction in that class. Checking in appveyor initial configuration. Added windows test (try) to travis config.
17 lines
443 B
Batchfile
Executable File
17 lines
443 B
Batchfile
Executable File
@echo off
|
|
set archive=http://ftp.hosteurope.de/mirror/archive.mariadb.org/mariadb-%DB%/winx64-packages/mariadb-%DB%-winx64.msi
|
|
set last=http://mirror.i3d.net/pub/mariadb/mariadb-%DB%/winx64-packages/mariadb-%DB%-winx64.msi
|
|
|
|
curl -fLsS -o server.msi %archive%
|
|
|
|
if %ERRORLEVEL% == 0 goto end
|
|
|
|
curl -fLsS -o server.msi %last%
|
|
if %ERRORLEVEL% == 0 goto end
|
|
|
|
echo Failure Reason Given is %errorlevel%
|
|
exit /b %errorlevel%
|
|
|
|
:end
|
|
echo "File found".
|