LinUX (centOS6.8) system ThinkPHP5 links the pdo_dblib extension of the MsSQL database
The first step is to download and install freetds-current.tar.gz. The download address is as follows
ftp://ftp.freetds.org/pub/freetds/current/freetds-current.tar.gz
1.1 Download, unzip and enter the folder (in fact, you can also unzip and then upload to the linux server) wget ftp://ftp.freetds.org/pub/freetds/current/freetds-current.tar.gz
tar zxvf freetds-current.tar.gz
cd freetds-stable
*The path after decompression may not be correct if you look at it
1.2 Execute ./configure./configure --prefix=/usr/local/freetds --with-tdsver=7.1 --enable-msdblib
1.3 Execute make installmake && make install
The second step is to install PHP and install pdo_dblib Extension
2.1 Enter the PHP source file directory you installed. If you cannot find it, find the PHP file of the same version, decompress it and upload it to the Linux server. I will take this path /root/scr/php/ext/pdo_dblib as an examplecd /root/scr/ php/ext/pdo_dblib
2.2 Execute phpize If your php is not installed in the /usr/local path, you need to change it to your own php path/usr/local/php/bin/phpize
For example, my php installation path is /www/wdlinux/apache_php-5.6.21/ will execute /www/wdlinux/apache_php-5.6.21/bin/phpize
2.3 Execute ./configure Same as above. If your php is not installed in the /usr/local path, you need to change it to your own php path./configure --with-php-config=/usr/local/php/bin/php- config --with-pdo-dblib=/usr/local/freetds
For example, my PHP installation path is /www/wdlinux/apache_php-5.6.21/ then./configure --with-php-config=/www/ wdlinux/apache_php-5.6.21/bin/php-config --with-pdo-dblib=/usr/local/freetds
2.4 Execute make installmake && make install
The third step is to modify php.ini. Same as above. If your php is not installed in the /usr/local path, you need to modify it to your own php path
For example, my php installation path is /www/wdlinux/apache_php-5.6.21/
3.1 Verify the path of the compiled file
Go into /usr/local/php/lib/php/extensions and check if there are mssql.so and pdo_dblib.so files in it or in the lower-level directories
If it exists, it means the compilation is successful
3.2 Modify php.inivi /usr/local/php/etc/php.ini
and add the following code at the bottom and save the vi modification (press i to enter the editing mode first, after the addition is successful, press the Esc key to exit the editing mode and then enter :wq and press Enter to save)extension="/usr/local/php/lib/php/extensions/mssql.so"<br>
extension="/usr/local/php/lib/php/extensions/pdo_dblib.so"
Different servers may have different codes, and my PHP installation and compilation paths are differentextension="/www/wdlinux/apache_php- 5.6.21/lib/php/extensions/no-debug-non-zts-20131226/mssql.so"<br>
extension="/www/wdlinux/apache_php-5.6.21/lib/php/extensions/no-debug-non-zts-20131226/pdo_dblib.so"
3.3 After everything is done, restart Apache apache. Of course, you can also enter reboot. Restart the serverservice httpd restrat
3.4 If you feel uneasy, check the php probe file to see if mssql and pdo_dblib are installed successfully
Step 4 Download the attachment and copy the database driver extension file to the ThinkPHP file
Put the file under /thinkphp/library/think/db in the main program
There are two files, which are placed in the builder and connector folders. The two questions have the same name, both are Dblib.php, but they cannot be confused. Remember
Step 5 Configure the database.php file return [<br>
//Database type<br>
'type' => 'dblib',<br>
// Server address<br>
'hostname' => '192.168.1.210',<br>
// Database name<br>
'database' => 'Mikkle_WeiXin',<br>
// Username<br>
'username' => 'sa',<br>
//Password<br>
'password' => '123123123123123',<br>//Port<br>
'hostport' => '1433',<br>
// Connect to dsn<br>
‘dsn’
//Database connection parameters<br>
'params' => [],<br>
//The database encoding defaults to utf8<br>
'charset' => 'utf8',<br>
// Database table prefix<br>
'prefix' => 'WeiXin_',<br>
// Database debugging mode<br>
'debug' => true,<br>
//Database deployment method: 0 centralized (single server), 1 distributed (master-slave server)<br>
'deploy' => 0,<br>
// Is the database reading and writing separated? The master-slave method is valid<br>
'rw_separate' => false,<br>
//Number of primary servers after separation of reading and writing<br>
'master_num' => 1,<br>
//Specify the slave server serial number<br>
'slave_no' => '',<br>
// Whether to strictly check whether the field exists<br>
'fields_strict' => true,<br>
//Dataset return type array array collection Collection object<br>
'resultset_type' => 'array',<br>
// Whether to automatically write the timestamp field<br>
'auto_timestamp' => true,<br>
// Do you need to perform SQL performance analysis<br>
'sql_explain' => false,<br>
];<br>Ok and you’re done
Thinkphp5 Pdo_dblib extension.zip
(3.16 KB Download: 1 time)

了解Python编程的入门级代码示例Python是一种简单易学,功能强大的编程语言。对于初学者来说,了解Python编程的入门级代码示例是非常重要的。本文将为您提供一些具体的代码示例,帮助您快速入门。打印HelloWorldprint("HelloWorld")这是Python中最简单的代码示例。print()函数用于将指定的内容输出

PHP变量存储程序运行期间的值,对于构建动态且交互式的WEB应用程序至关重要。本文将深入探讨php变量,并通过10个真实的示例展示它们的实际应用。1.存储用户输入$username=$_POST["username"];$passWord=$_POST["password"];此示例从表单提交中提取用户名和密码,并将其存储在变量中以供进一步处理。2.设置配置值$database_host="localhost";$database_username="username";$database_pa

标题:从入门到精通:Go语言中常用数据结构的代码实现数据结构在编程中起着至关重要的作用,它是程序设计的基础。在Go语言中,有许多常用的数据结构,掌握这些数据结构的实现方式对于成为一名优秀的程序员至关重要。本文将介绍Go语言中常用的数据结构,并给出相应的代码示例,帮助读者从入门到精通这些数据结构。1.数组(Array)数组是一种基本的数据结构,是一组相同类型

《Go语言编程实例:Web开发中的代码示例》随着互联网的快速发展,Web开发已经成为各行业中必不可少的一部分。作为一门功能强大且性能优越的编程语言,Go语言在Web开发中越来越受到开发者们的青睐。本文将通过具体的代码示例,介绍如何利用Go语言进行Web开发,让读者能够更好地理解和运用Go语言来构建自己的Web应用。1.简单的HTTP服务器首先,让我们从一个

Java冒泡排序最简单的代码示例冒泡排序是一种常见的排序算法,它的基本思想是通过相邻元素的比较和交换来将待排序序列逐步调整为有序序列。下面是一个简单的Java代码示例,演示了如何实现冒泡排序:publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

如何使用PHP编写库存管理系统中的库存分仓管理功能代码库存管理是许多企业中不可或缺的一部分。对于拥有多个仓库的企业来说,库存分仓管理功能尤为重要。通过合理管理和跟踪库存,企业可以实现不同仓库之间的库存调拨,优化运营成本,改善协同效率。本文将介绍如何使用PHP编写库存分仓管理功能的代码,并为您提供相关的代码示例。一、建立数据库在开始编写库存分仓管理功能的代码之

Java选择排序法代码编写指南及示例选择排序是一种简单直观的排序算法,其思想是每次从未排序的元素中选择最小(或最大)的元素进行交换,直到所有元素排序完成。本文将提供选择排序的代码编写指南,并附上具体的Java示例代码。算法原理选择排序的基本原理是将待排序数组分为已排序和未排序两部分,每次从未排序部分选择最小(或最大)的元素,将其放到已排序部分的末尾。重复上述

华为云边缘计算对接指南:Java代码示例快速实现接口随着物联网技术的快速发展和边缘计算的兴起,越来越多的企业开始关注边缘计算的应用。华为云提供了边缘计算服务,为企业提供了高可靠的计算资源和便捷的开发环境,使得边缘计算应用更加容易实现。本文将介绍如何通过Java代码快速实现华为云边缘计算的接口。首先,我们需要准备好开发环境。确保你已经安装了Java开发工具包(


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
