Persistant Db Connection To Mssql Server

I want to connect to the MS-SQL Server with persistent connection… so that the temporary table created in the previous query could be used there after. does anyone know how to do it using config file …?

Add ‘persistent’=>true in config file.

‘db’ => array(

        'connectionString' => '',


        'username' => '',


        'password' => '',


        'charset' => 'utf8',


        'enableParamLogging' => true,


        'enableProfiling' => true,


        'persistent'=>true


    ),

something like this.