Created
September 3, 2018 03:51
-
-
Save carlochess/658a98589709f46dbb3d20502e48556b to your computer and use it in GitHub Desktop.
How to install Pyodbc for Sqlserver.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Start a container that mimic the lambda environment | |
docker run -it --rm --entrypoint bash -e ODBCINI=/var/task -e ODBCSYSINI=/var/task -v "$PWD":/var/task lambci/lambda:build-python2.7 | |
# Then, download ODBC source code, compile and take the output | |
curl ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.5.tar.gz -O | |
tar xvzf unixODBC-2.3.5.tar.gz | |
cd unixODBC-2.3.5 | |
./configure --sysconfdir=/var/task --disable-gui --disable-drivers --enable-iconv --with-iconv-char-enc=UTF8 --with-iconv-ucode-enc=UTF16LE --prefix=/home | |
make install | |
cd .. | |
mv /home/* . | |
mv unixODBC-2.3.5 unixODBC-2.3.5.tar.gz /tmp/ | |
# Install MSsql odbc driver | |
curl https://packages.microsoft.com/config/rhel/6/prod.repo > /etc/yum.repos.d/mssql-release.repo | |
ACCEPT_EULA=Y yum -y install msodbcsql | |
export CFLAGS="-I/var/task/include" | |
export LDFLAGS="-L/var/task/lib" | |
# Then you can install pyodbc (or pip install -t . -r requirements.txt) | |
pip install pyodbc -t . | |
cp -r /opt/microsoft/msodbcsql . | |
cat <<EOF > odbcinst.ini | |
[ODBC Driver 13 for SQL Server] | |
Description=Microsoft ODBC Driver 13 for SQL Server | |
Driver=/var/task/msodbcsql/lib64/libmsodbcsql-13.1.so.9.2 | |
UsageCount=1 | |
EOF | |
cat <<EOF > odbc.ini | |
[ODBC Driver 13 for SQL Server] | |
Driver = ODBC Driver 13 for SQL Server | |
Description = My ODBC Driver 13 for SQL Server | |
Trace = No | |
EOF | |
# Test if it works | |
python -c "import pyodbc; print(pyodbc.drivers());" | |
python -c 'import pyodbc;conn = pyodbc.connect("DRIVER={ODBC Driver 13 for SQL Server}; SERVER=YOUr_SERVER:ADD;PORT=1443;DATABASE=TestDB;UID=SA;PWD=<YourStrong!Passw0rd>");crsr = conn.cursor();rows = crsr.execute("select @@VERSION").fetchall();print(rows);crsr.close();conn.close()' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @ca0abinary! Appreciate it.