linux 下用freetds 鏈接sqlserver

(1)安裝freeTDS sql

FreeTDS爲Linux系統提供了TDS協議的開源客戶端。因爲MS SQL和Sybase使用的恰是TDS協議,因此在Linux中能夠用FreeTDS鏈接MS SQL。

官網:http://www.freetds.org

下載:wget http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz

安裝:
[root@vm01 ~]# tar zxf freetds-stable.tgz
[root@vm01 ~]# cd freetds-0.91
[root@vm01 freetds-0.91]# ./configure --prefix=/usr/local/freetds --with-tdsver=8.0 --enable-msdblib
[root@vm01 freetds-0.91]# make
[root@vm01 freetds-0.91]# make install

修改環境變量:
FREETDS_HOME=/usr/local/freetds
export PATH=$FREETDS_HOME/bin:$PATH

庫文件加載:
[root@vm01 freetds-0.91]# vim /etc/ld.so.conf.d/freetds.conf
/usr/local/freetds/lib
[root@vm01 freetds-0.91]# ldconfig

(2) 修改配置文件,鏈接數據庫
(i) 添加數據源
[root@vm01 test]# vim /usr/local/freetds/etc/freetds.conf 
#zkl add
[SQL2005]
        host = 192.168.232.133
        port = 1433
        tds version=8.0
#client charset = ISO-8859-1
完成後,使用以下命令便可鏈接到 SQL Server 2005 .
[root@vm01 test]# tsql -S SQL2005 -U sa -P zkl
locale is "zh_CN.GB18030"
locale charset is "GB18030"
using default charset "GB18030"
1> use test  [使用test數據庫]
2> go
1> select * from StuInfo [查詢表信息]
2> go
StuID Name  Age
001 zyh  24
002 zkl  21
003 Jim  24
(3 rows affected)

(ii) 修改協議版本以正常鏈接SQL Server 2005
修改 freetds 配置文件
[root@vm01 test]# vim /usr/local/freetds/etc/freetds.conf 
[global]
        # TDS protocol version
#;      tds version = 4.2

         tds version=8.0 數據庫

鏈接 SQL SERVER 2005 須要使用的協議版本爲 8.0,而使用 4.2 時,鏈接將會失敗。使用 tsql 命令鏈接時,若是不像步驟(2)中那樣配置數據源,則一樣須要修改協議,而後才能使用以下命令正常鏈接數據庫:
[root@vm01 test]# tsql -H 192.168.232.133 -p 1433 -U sa -P zkl

注意:第一個p爲小寫,後面的P是大寫。

(3) 使用C++代碼鏈接數據庫
首先,確保協議版本是 8.0,而後編譯如下C代碼,測試與數據庫的鏈接。

test.c:
----------------------------------------------- 
  1. #include <stdio.h> 
  2. #include <string.h> 
  3. #include <stdlib.h> 
  4. #include <unistd.h>  
  5.   
  6. #include <sybfront.h> //freetds頭文件 
  7. #include <sybdb.h> //freetds 
  8.   
  9.   
  10. int main(void
  11.     char szUsername[32] = "sa"
  12.     char szPassword[32] = "zkl"
  13.     char szDBName[32] = "test"//數據庫名 
  14.     char szServer[32] = "192.168.232.133:1433";//數據庫服務器:端口 
  15.   
  16.     //初始化db-library 
  17.     dbinit(); 
  18.         
  19.     //鏈接數據庫 
  20.     LOGINREC *loginrec = dblogin(); 
  21.     DBSETLUSER(loginrec, szUsername);        
  22.     DBSETLPWD(loginrec, szPassword); 
  23.     DBPROCESS *dbprocess = dbopen(loginrec, szServer);//鏈接數據庫 
  24.     if(dbprocess == FAIL) 
  25.     { 
  26.         printf("Conect to MS SQL SERVER fail, exit!\n"); 
  27.         return -1;  
  28.     } 
  29.     printf("Connect to MS SQL SERVER success!\n"); 
  30.         
  31.     if(dbuse(dbprocess, szDBName) == FAIL) 
  32.         printf("Open database failed!\n"); 
  33.     else 
  34.         printf("Open database success!\n"); 
  35.         
  36.     //查詢數據庫 
  37.     printf("[查詢數據庫表]\n"); 
  38.     dbcmd(dbprocess, "select StuID, Name, Age from StuInfo"); 
  39.     if(dbsqlexec(dbprocess) == FAIL) 
  40.     { 
  41.         printf("Query table 'StuInfo' error.\n"); 
  42.         return -1;  
  43.     } 
  44.       
  45.     DBINT result_code; 
  46.     char szStuID[20]={}; 
  47.     char szName[80]={}; 
  48.     char szAge[10]={}; 
  49.     int rows = 0; 
  50.     while ((result_code = dbresults(dbprocess)) != NO_MORE_RESULTS){ 
  51.         if (result_code == SUCCEED){ 
  52.             dbbind(dbprocess, 1, CHARBIND, (DBINT)0, (BYTE*)szStuID); 
  53.             dbbind(dbprocess, 2, CHARBIND, (DBCHAR)0, (BYTE*)szName); 
  54.             dbbind(dbprocess, 3, CHARBIND, (DBCHAR)0, (BYTE*)szAge); 
  55.             printf("StuID\tName\tAge\n", szStuID); 
  56.             while (dbnextrow(dbprocess) != NO_MORE_ROWS){                         
  57.                 printf("%s\t", szStuID); 
  58.                 printf("%s\t", szName); 
  59.                 printf("%s\n", szAge); 
  60.             } 
  61.         } 
  62.     }        
  63.   
  64.     printf("[插入數據到數據庫表]\n"); 
  65.     dbcmd(dbprocess, "insert into StuInfo(StuID, Name, Age) values(888,'James',28)"); 
  66.     if(dbsqlexec(dbprocess) == FAIL) 
  67.     { 
  68.         printf("insert into table 'StuInfo' error.\n"); 
  69.         return -1;  
  70.     } 
  71.     printf("insert into table 'StuInfo' success.\n"); 
  72.      
  73.     printf("[刪除數據庫表中的記錄]\n"); 
  74.     dbcmd(dbprocess, "delete from StuInfo where StuID=888"); 
  75.     if(dbsqlexec(dbprocess) == FAIL) 
  76.     { 
  77.         printf("delete from table 'StuInfo' error.\n"); 
  78.         return -1;  
  79.     } 
  80.     printf("delete from table 'StuInfo' success.\n"); 
  81.      
  82.     //關閉數據庫鏈接 
  83.     dbclose(dbprocess); 
  84.  
  85.     return 0; 
  86. }  
[cpp] 
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <stdlib.h>  
  4. #include <unistd.h>   
  5.    
  6. #include <sybfront.h> //freetds頭文件  
  7. #include <sybdb.h> //freetds  
  8.    
  9.    
  10. int main(void)  
  11. {  
  12.     char szUsername[32] = "sa";  
  13.     char szPassword[32] = "zkl";  
  14.     char szDBName[32] = "test"//數據庫名  
  15.     char szServer[32] = "192.168.232.133:1433";//數據庫服務器:端口  
  16.    
  17.     //初始化db-library  
  18.     dbinit();  
  19.          
  20.     //鏈接數據庫  
  21.     LOGINREC *loginrec = dblogin();  
  22.     DBSETLUSER(loginrec, szUsername);         
  23.     DBSETLPWD(loginrec, szPassword);  
  24.     DBPROCESS *dbprocess = dbopen(loginrec, szServer);//鏈接數據庫  
  25.     if(dbprocess == FAIL)  
  26.     {  
  27.         printf("Conect to MS SQL SERVER fail, exit!\n");  
  28.         return -1;   
  29.     }  
  30.     printf("Connect to MS SQL SERVER success!\n");  
  31.          
  32.     if(dbuse(dbprocess, szDBName) == FAIL)  
  33.         printf("Open database failed!\n");  
  34.     else  
  35.         printf("Open database success!\n");  
  36.          
  37.     //查詢數據庫  
  38.     printf("[查詢數據庫表]\n");  
  39.     dbcmd(dbprocess, "select StuID, Name, Age from StuInfo");  
  40.     if(dbsqlexec(dbprocess) == FAIL)  
  41.     {  
  42.         printf("Query table 'StuInfo' error.\n");  
  43.         return -1;   
  44.     }  
  45.        
  46.     DBINT result_code;  
  47.     char szStuID[20]={};  
  48.     char szName[80]={};  
  49.     char szAge[10]={};  
  50.     int rows = 0;  
  51.     while ((result_code = dbresults(dbprocess)) != NO_MORE_RESULTS){  
  52.         if (result_code == SUCCEED){  
  53.             dbbind(dbprocess, 1, CHARBIND, (DBINT)0, (BYTE*)szStuID);  
  54.             dbbind(dbprocess, 2, CHARBIND, (DBCHAR)0, (BYTE*)szName);  
  55.             dbbind(dbprocess, 3, CHARBIND, (DBCHAR)0, (BYTE*)szAge);  
  56.             printf("StuID\tName\tAge\n", szStuID);  
  57.             while (dbnextrow(dbprocess) != NO_MORE_ROWS){                          
  58.                 printf("%s\t", szStuID);  
  59.                 printf("%s\t", szName);  
  60.                 printf("%s\n", szAge);  
  61.             }  
  62.         }  
  63.     }         
  64.    
  65.     printf("[插入數據到數據庫表]\n");  
  66.     dbcmd(dbprocess, "insert into StuInfo(StuID, Name, Age) values(888,'James',28)");  
  67.     if(dbsqlexec(dbprocess) == FAIL)  
  68.     {  
  69.         printf("insert into table 'StuInfo' error.\n");  
  70.         return -1;   
  71.     }  
  72.     printf("insert into table 'StuInfo' success.\n");  
  73.       
  74.     printf("[刪除數據庫表中的記錄]\n");  
  75.     dbcmd(dbprocess, "delete from StuInfo where StuID=888");  
  76.     if(dbsqlexec(dbprocess) == FAIL)  
  77.     {  
  78.         printf("delete from table 'StuInfo' error.\n");  
  79.         return -1;   
  80.     }  
  81.     printf("delete from table 'StuInfo' success.\n");  
  82.       
  83.     //關閉數據庫鏈接  
  84.     dbclose(dbprocess);  
  85.   
  86.     return 0;  
  87. }   


-----------------------------------------------

Makefile:
-----------------------------------------------
default:
gcc test.c -o test -L/usr/local/freetds/lib -lsybdb -I/usr/local/freetds/include
相關文章
相關標籤/搜索