mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 08:05:53 +02:00
sqlsrv instances removed
This commit is contained in:
parent
058466ea87
commit
18789c5d84
@ -29,23 +29,6 @@ class MSSQLDatabase extends Database {
|
||||
*/
|
||||
private $database;
|
||||
|
||||
/**
|
||||
* Holds either mssql or sqlsrv, depending on what's available on the server.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
private $funcPrefix;
|
||||
|
||||
/*function connect($server, $username, $password){
|
||||
$func = $this->funcPrefix . '_connect';
|
||||
|
||||
|
||||
if(MSSQL_COMPATIBLE)
|
||||
return $func($server, $username, $password);
|
||||
else
|
||||
return sqlsrv_connect($server, $username, $password);
|
||||
}*/
|
||||
|
||||
/**
|
||||
* Connect to a MS SQL database.
|
||||
* @param array $parameters An map of parameters, which should include:
|
||||
@ -56,25 +39,9 @@ class MSSQLDatabase extends Database {
|
||||
*/
|
||||
public function __construct($parameters) {
|
||||
|
||||
if(function_exists('sqlsrv_connect')){
|
||||
$this->funcPrefix='sqlsrv';
|
||||
$this->dbConn = sqlsrv_connect($parameters['server'], Array('UID'=>$parameters['username'], 'PWD'=>$parameters['password'], 'Database'=>$parameters['database']));
|
||||
$this->query('USE ' . $parameters['database'] . ';');
|
||||
$this->active=true;
|
||||
} else {
|
||||
$this->funcPrefix='mssql';
|
||||
$this->dbConn = mssql_connect($parameters['server'], $parameters['username'], $parameters['password']);
|
||||
$this->active = mssql_select_db($parameters['database'], $this->dbConn);
|
||||
}
|
||||
|
||||
//Set up the database function names
|
||||
//$connect=$this->funcPrefix . '_connect';
|
||||
//$select_db=$this->funcPrefix . '_select_db';
|
||||
|
||||
//assumes that the server and dbname will always be provided:
|
||||
|
||||
//$this->dbConn = $connect($parameters['server'], $parameters['username'], $parameters['password']);
|
||||
//$this->active = $select_db($parameters['database'], $this->dbConn);
|
||||
$this->database = $parameters['database'];
|
||||
|
||||
if(!$this->dbConn) {
|
||||
@ -82,7 +49,7 @@ class MSSQLDatabase extends Database {
|
||||
} else {
|
||||
$this->active=true;
|
||||
$this->database = $parameters['database'];
|
||||
//$select_db($parameters['database'], $this->dbConn);
|
||||
mssql_select_db($parameters['database'], $this->dbConn);
|
||||
}
|
||||
|
||||
parent::__construct();
|
||||
@ -168,22 +135,19 @@ class MSSQLDatabase extends Database {
|
||||
$starttime = microtime(true);
|
||||
}
|
||||
|
||||
//echo 'sql: ' . $sql . '<br>';
|
||||
echo 'sql: ' . $sql . '<br>';
|
||||
//Debug::backtrace();
|
||||
|
||||
//$funcName=$this->funcPrefix . '_query';
|
||||
|
||||
if($this->funcPrefix=='mssql')
|
||||
//if($sql!='')
|
||||
$handle = mssql_query($sql, $this->dbConn);
|
||||
else
|
||||
$handle = sqlsrv_query($this->dbConn, $sql);
|
||||
//else
|
||||
// $handle=null;
|
||||
|
||||
if(isset($_REQUEST['showqueries'])) {
|
||||
$endtime = round(microtime(true) - $starttime,4);
|
||||
Debug::message("\n$sql\n{$endtime}ms\n", false);
|
||||
}
|
||||
|
||||
echo 'handle for this query: ' . $handle . '<br>';
|
||||
DB::$lastQuery=$handle;
|
||||
|
||||
if(!$handle && $errorLevel) $this->databaseError("Couldn't run query: $sql", $errorLevel);
|
||||
@ -677,8 +641,7 @@ class MSSQLDatabase extends Database {
|
||||
* @return int
|
||||
*/
|
||||
public function affectedRows() {
|
||||
$funcName=$this->funcPrefix . '_rows_affected';
|
||||
return $funcName($this->dbConn);
|
||||
return mssql_rows_affected($this->dbConn);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1091,13 +1054,6 @@ class MSSQLQuery extends Query {
|
||||
*/
|
||||
private $handle;
|
||||
|
||||
/**
|
||||
* Holds either mssql or sqlsrv, depending on what's available on the server.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
private $funcPrefix;
|
||||
|
||||
/**
|
||||
* Hook the result-set given into a Query class, suitable for use by sapphire.
|
||||
* @param database The database object that created this query.
|
||||
@ -1105,19 +1061,13 @@ class MSSQLQuery extends Query {
|
||||
*/
|
||||
public function __construct(MSSQLDatabase $database, $handle) {
|
||||
|
||||
if(function_exists('sqlsrv_connect'))
|
||||
$this->funcPrefix='sqlsrv';
|
||||
else
|
||||
$this->funcPrefix='mssql';
|
||||
|
||||
$this->database = $database;
|
||||
$this->handle = $handle;
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
public function __destroy() {
|
||||
$funcName=$this->funcPrefix . '_free_result';
|
||||
$funcName($this->handle);
|
||||
mssql_free_result($this->handle);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1125,10 +1075,7 @@ class MSSQLQuery extends Query {
|
||||
*
|
||||
*/
|
||||
public function seek($row) {
|
||||
if($this->funcPrefix=='mssql')
|
||||
return mssql_data_seek($this->handle, $row);
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1141,16 +1088,11 @@ class MSSQLQuery extends Query {
|
||||
*
|
||||
*/
|
||||
public function numRecords() {
|
||||
if($this->funcPrefix=='mssql')
|
||||
return mssql_num_rows($this->handle);
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
public function nextRecord() {
|
||||
//echo 'running nextRecord<br>';
|
||||
// Coalesce rather than replace common fields.
|
||||
if($this->funcPrefix=='mssql'){
|
||||
if($data = mssql_fetch_row($this->handle)) {
|
||||
foreach($data as $columnIdx => $value) {
|
||||
$columnName = mssql_field_name($this->handle, $columnIdx);
|
||||
@ -1160,38 +1102,12 @@ class MSSQLQuery extends Query {
|
||||
$output[$columnName] = $value;
|
||||
}
|
||||
}
|
||||
//echo 'output from nextRecord (MSSQL):<pre>';
|
||||
//print_r($output);
|
||||
//echo '</pre>';
|
||||
return $output;
|
||||
} else {
|
||||
//echo 'nothing to return from nextRecord<br>';
|
||||
return false;
|
||||
}
|
||||
|
||||
} else {
|
||||
//Data returns true or false, NOT the actual row
|
||||
if($data = sqlsrv_fetch($this->handle)) {
|
||||
//Now we need to get each row as a stream
|
||||
//foreach($data as $columnIdx => $value) {
|
||||
while($row=sqlsrv_get_field(DB::$lastQuery)){
|
||||
$columnName = sqlsrv_field_name($this->handle, $columnIdx);
|
||||
// $value || !$ouput[$columnName] means that the *last* occurring value is shown
|
||||
// !$ouput[$columnName] means that the *first* occurring value is shown
|
||||
if(isset($value) || !isset($output[$columnName])) {
|
||||
$output[$columnName] = $value;
|
||||
}
|
||||
}
|
||||
//echo 'output from nextRecord (SQLSRV):<pre>';
|
||||
//print_r($output);
|
||||
//echo '</pre>';
|
||||
return $output;
|
||||
} else {
|
||||
//echo 'nothing to return from nextRecord<br>';
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user