Skip to content

Instantly share code, notes, and snippets.

View fytzzz's full-sized avatar

fytzzz fytzzz

View GitHub Profile
@tfanme
tfanme / install-activerecord-sqlserver-adapter-under-centos.sh
Created March 28, 2013 06:31
Install activerecord-sqlserver-adapter under CentOS
# Use /download as our temporary download directory
# Start download and install freetds
cd /download
# Offical Site: freetds.org
wget ftp://ftp.astron.com/pub/freetds/stable/freetds-stable.tgz
tar zxvf freetds-0.91
cd freetds-0.91
./configure
make
make install