Welcome Guest, Not a member yet? Register   Sign In
Connecting to MsSQL database
#1
Brick 

Ubuntu: 16.04 
Apache:  Apache/2.4.18 (Ubuntu)
CI: 3.1.6

I've been spinning my wheels on this for a day or two, think i need some help!  I am making a clean build, for a very old CI based application with all the new bells and whistles - But i cannot get a basic database connection to work on the new box.

application\models\User_model.php::
Code:
class User_Model extends CI_Model
{    
    function __construct()
    {
        parent::__construct();    
               $this->load->database();    
    }
}


application\config\database.php::
Code:
$db[$active_group] = array(
    'dsn'    => '',
    'hostname' => 'THE_HOSTNAME',
    'username' =>    "THEUSERNAME",
    'password' =>    "THEPASSWORD",
    'database' =>    "THEDATABASE",
    'dbdriver' =>    "mssql",
    'dbprefix' => '',
    'pconnect' => TRUE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);


And when it is run:

Quote:An uncaught Exception was encountered
Type: Error

Message: Call to undefined function mssql_pconnect()

Filename: /var/www/moar.innisfil.ca/system/database/drivers/mssql/mssql_driver.php

Line Number: 112


Line 112 is as follows (Unmodified from the downloaded version of CI) ::
PHP Code:
        $this->conn_id = ($persistent)
                ? 
mssql_pconnect($this->hostname$this->username$this->password)
                : 
mssql_connect($this->hostname$this->username$this->password); 



Obviously there may be a package or two missing, from ubuntu, or apache, but I can not figure out which.  Help would be very much appreciated!!  Attached is output from phpinfo

Attached Files
.html   phpinfo.html (Size: 82.44 KB / Downloads: 174)
Reply
#2

(This post was last modified: 01-11-2018, 02:16 PM by jreklund.)

1. Install sqlsrv driver:
https://docs.microsoft.com/en-us/sql/con...for-php-70

2. Change your dbdriver into 'sqlsrv' (application\config\database.php)
Reply
#3

Driver should also be MySQLi not MySQL
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#4

(01-11-2018, 02:15 PM)jreklund Wrote: 1. Install sqlsrv driver:
https://docs.microsoft.com/en-us/sql/con...for-php-70

2. Change your dbdriver into 'sqlsrv' (application\config\database.php)

Excellent - That was the push in the right direction i needed.  Thank you!
Reply




Theme © iAndrew 2016 - Forum software by © MyBB