Created
April 2, 2013 19:01
-
-
Save andres-torres-marroquin/5295152 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(deltamedix)ed@HinduKush:~/projects/deltamedix/deltamedix$ cat /etc/freetds/freetds.conf | |
# $Id: freetds.conf,v 1.12 2007/12/25 06:02:36 jklowden Exp $ | |
# | |
# This file is installed by FreeTDS if no file by the same | |
# name is found in the installation directory. | |
# | |
# For information about the layout of this file and its settings, | |
# see the freetds.conf manpage "man freetds.conf". | |
# Global settings are overridden by those in a database | |
# server specific section | |
[global] | |
# TDS protocol version | |
; tds version = 4.2 | |
# Whether to write a TDSDUMP file for diagnostic purposes | |
# (setting this to /tmp is insecure on a multi-user system) | |
dump file = /tmp/freetds.log | |
debug flags = 0xffff | |
# Command and connection timeouts | |
; timeout = 10 | |
; connect timeout = 10 | |
# If you get out-of-memory errors, it may mean that your client | |
# is trying to allocate a huge buffer for a TEXT field. | |
# Try setting 'text size' to a more reasonable limit | |
text size = 64512 | |
# A typical Microsoft server | |
[DeltaMedix] | |
host = testsql.tempdev.com | |
port = 1433 | |
tds version = 8.0 | |
client charset = UTF-8 | |
(deltamedix)ed@HinduKush:~/projects/deltamedix/deltamedix$ cat /etc/odbc.ini | |
#[ODBC Data Sources] | |
#DeltaMedix = Microsoft SQL Server | |
# | |
#[DeltaMedix] | |
#Driver = FreeTDS | |
#Description = DeltaMedix | |
#Trace = Yes | |
#TraceFile = sql.log | |
#Servername = DeltaMedix | |
#Port = 1433 | |
#Database = NGDemo | |
# | |
#[Default] | |
#Driver = /usr/lib/odbc/libtdsodbc.so | |
[ODBC Data Sources] | |
DeltaMedix = Microsoft SQL Server | |
[DeltaMedix] | |
Driver = FreeTDS | |
Trace = No | |
Servername = DeltaMedix | |
Database = NGTest | |
[Default] | |
Driver = /usr/lib/odbc/libtdsodbc.so | |
(deltamedix)ed@HinduKush:~/projects/deltamedix/deltamedix$ cat /etc/odbcinst.ini | |
[FreeTDS] | |
Description = TDS driver (MS SQL) | |
Driver = /usr/lib/odbc/libtdsodbc.so | |
Setup = /usr/lib/odbc/libtdsS.so | |
CPTimeout = | |
CPReuse = | |
TDS Version = 8 | |
client charset = latin-1 | |
FileUsage=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment