Here is version 3.0 of the MSSQL PHP driver.
1.1 is severely deprecated.
http://www.microsoft.com/download/en/details.aspx?id=17308
Microsoft SQL Server
- Einführung
- Installation/Konfiguration
- Vordefinierte Konstanten
- Mssql-Funktionen
- mssql_bind — Fügt einer Stored Procedure oder einer Remote Stored Procedure einen Parameter hinzu
- mssql_close — Schließt die Verbindung zum MS SQL Server
- mssql_connect — Baut eine Verbindung zum MS SQL Server auf
- mssql_data_seek — Bewegt den internen Datensatzzeiger
- mssql_execute — Führt eine Stored Procedure in einer MS SQL-Datenbank aus
- mssql_fetch_array — Liefert einen Ergebnis-Datensatz als assoziatives Array, als numerisches Array oder beides
- mssql_fetch_assoc — Liefert ein assoziatives Array des aktuellen Datensatzes aus dem Ergebnis, das durch die Ergebniskennung bestimmt ist
- mssql_fetch_batch — Liefert den nächsten Stapel von Datensätzen
- mssql_fetch_field — Liefert Informationen über ein Feld
- mssql_fetch_object — Liefert einen Datensatz als Objekt
- mssql_fetch_row — Liefert einen Datensatz als indiziertes Array
- mssql_field_length — Liefert die Länge eines Feldes
- mssql_field_name — Liefert den Namen eines Feldes
- mssql_field_seek — Setzt einen Feld-Offset
- mssql_field_type — Liefert den Typ eines Feldes
- mssql_free_result — Gibt den Ergebnisspeicher frei
- mssql_free_statement — Gibt den Anweisungsspeicher frei
- mssql_get_last_message — Gibt die letzte Meldung des Servers zurück
- mssql_guid_string — Wandelt eine binäre GUID mit 16 Bytes in eine Zeichenkette um
- mssql_init — Initialisiert eine Stored Procedure oder eine Remote Stored Procedure
- mssql_min_error_severity — Setzt die untere Fehlerschwelle
- mssql_min_message_severity — Setzt die untere Schwelle für Meldungen
- mssql_next_result — Bewegt den internen Ergebnis-Zeiger zum nächsten Ergebnis
- mssql_num_fields — Liefert die Anzahl der Felder eines Ergebnisses
- mssql_num_rows — Liefert die Anzahl der Datensätze eines Ergebnisses
- mssql_pconnect — Baut eine persistente MS SQL Verbindung auf
- mssql_query — Sendet eine MS SQL Anfrage
- mssql_result — Liefert die bei einer Abfrage gefundenen Daten
- mssql_rows_affected — Liefert die Anzahl der von einer Anfrage betroffenen Datensätze
- mssql_select_db — Wählt eine MS SQL Datenbank aus
bryanpiercecap at gmail dot com
03-Jan-2012 03:19
jezza at 9000internets dot com
05-Oct-2010 12:02
Using the new MS driver I have come across a difference between the array that I get back compared to mssql.
Example is here (both return types are associative arrays:
sqlsrv_fetch_array($resource, SQLSRV_FETCH_ASSOC)
"same as" sqlsrv_fetch($resource), as this returns by default an associative array, by default sqlsrv_fetch_array returns both an associative and a numeric array.
returns...
array(6) { ["yaxis"]=> object(DateTime)#58 (3) { ["date"]=> string(19) "2010-09-29 00:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(19) "Australia/Melbourne" } ["xaxis"]=> string(7) "Inbound" ["tt"]=> int(280345) ["ht"]=> int(297219) ["wt"]=> int(16874) ["calls"]=> int(1539) } string(8) ""
mssql_fetch_assoc($resource)
returns
array(6) { ["yaxis"]=> string(19) "2010-09-29 00:00:00" ["xaxis"]=> string(7) "Inbound" ["tt"]=> int(280345) ["ht"]=> int(297219) ["wt"]=> int(16874) ["calls"]=> int(1539) } string(8) ""
it would be much too difficult to change a large number of applications to compensate for this.
Found my answer...
add this to your connection objects parameters on instantiation
"ReturnDatesAsStrings"=>true
Found it buried in this article: http://msdn.microsoft.com/en-us/library/ee376928(SQL.90).aspx
vexx at pisem dot net
01-Oct-2010 09:26
this function get inserted ident like function mysql_insert_id()
<?php
function mssql_insert_id() {
$id = 0;
$res = mssql_query("SELECT @@identity AS id");
if ($row = mysql_fetch_array($res, MYSQL_ASSOC)) {
$id = $row["id"];
}
return $id;
}
?>
beartenor1
05-Feb-2010 05:18
As of October 2009, the new name is "SQL Server Driver for PHP 1.1"
Go to Microsoft Download Center http://www.microsoft.com/downloads and search
for "SQL Server Driver for PHP" which should take you to the following link:
http://www.microsoft.com/downloads/details.aspx?displaylang=en
&FamilyID=ccdf728b-1ea0-48a8-a84a-5052214caad9
But I wouldn't trust it to stay there. Microsoft has been moving a lot of download links lately.
tummen at jgd dot se
04-Sep-2009 09:28
i struggled with sqlsrv_connect for some time, first i had to get native client 2008 to get it to work, 2005 was not enough.
then i got som note that dll was compiled with wrong version, so i had to use test version 1.1 istead of 1.0 of the client and pick the version called php_sqlsrv_53_ts_vc6.dll
but still no success with connect.
finally i spent 7 hours testing things before i found out:
$serverName = "(local)"; ERROR for me
$serverName = "localhost\myinstansofdatabase"; //WOHOOOO
michal dot kocarek at brainbox dot cz
18-Aug-2009 08:05
Microsoft has issued in nearly past Native SQL driver for PHP.
This driver works with MSSQL 2000, 2005 and 2008 servers. Driver is issued as PHP extension. Source codes also available.
The driver supports native conversion to UTF-8, scrollable cursors and other features which this (old) library does not.
For more information and extension download please see
http://www.codeplex.com/SQLSRVPHP
They have also blog on http://blogs.msdn.com/sqlphp/
ccsalway at yahoo dot co dot uk
14-Aug-2009 06:02
Im running PHP 5.3 and used the php development ini and when I use the Microsoft SQL for PHP driver, I get the following error:
[15-Aug-2009 07:48:13] PHP Warning: PHP Startup: sqlsrv: Unable to initialize module
Module compiled with module API=20060613
PHP compiled with module API=20090626
These options need to match
in Unknown on line 0
exidas at madnes dot eu
05-Aug-2009 06:43
Hi, i was need some short and simple script to list all tables and columns of MSSQL database. There was nothing easy to explain on the net, so i've decided to share my short script, i hope it will help.
<?php
$all = MSSQL_Query("select TABLE_NAME, COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS order by TABLE_NAME, ORDINAL_POSITION");
$tables = array();
$columns = array();
while($fet_tbl = MSSQL_Fetch_Assoc($all)) { // PUSH ALL TABLES AND COLUMNS INTO THE ARRAY
$tables[] = $fet_tbl[TABLE_NAME];
$columns[] = $fet_tbl[COLUMN_NAME];
}
$sltml = array_count_values($tables); // HOW MANY COLUMNS ARE IN THE TABLE
foreach($sltml as $table_name => $id) {
echo "<h2>". $table_name ." (". $id .")</h2><ol>";
for($i = 0; $i <= $id-1; $i++) {
echo "<li>". $columns[$i] ."</li>";
}
echo"</ol>";
}
?>
hlex dot hlex at gmail dot com
26-Jun-2009 04:04
if your sql server use ANSI encoding and your page use UTF-8, this is method to convert to UTF-8
<?php
function convertAnsi2UTF8($array){
foreach ($array as $key=>$item) {
if(is_array($item)) $array[$key]=convertAnti2UTF8($item);
else $array[$key]=iconv("TIS-620","UTF-8",$item);
}
return $array;
}
?>
opc dot three at gmail dot com
02-Jun-2009 02:50
After extensive research trying to get PHP on Linux communicating with SQL Server 2005 and 2008 including support for all Unicode, MAX and XML data types I could not find any open source solutions...yes, I spent a lot of time trying to get FreeTDS to work to no avail.
I found one free solution that runs on Windows which is to use the "SQL Server Driver for PHP" provided by Microsoft (http://sql2k5php.codeplex.com). The driver relies on the Microsoft Native Client ODBC drivers for SQL Server 2008 (part of the "Microsoft SQL Server 2008 Native Client" which is downloadable from Microsoft) which is why this solution will not work on anything except Windows.
I did find a solution that works for PHP on Linux but it's not free...use the standard PHP::ODBC lib (free) and the Easysoft ODBC driver for SQL Server (not free, but reasonable by Enterprise standards). You can check out the ODBC driver by going here http://www.easysoft.com/products/data_access and looking for "Easysoft ODBC-SQL Server Driver"
thanhha dot phan at yahoo dot com
03-May-2009 01:03
I got a serious problem with Unicode data when working with PHP and MSSQL. I have to say the PHP and MSSQL doesn't seem to be a good combination.
MSSQL is really complicated to work with since the whole server uses a single character encoding[ucs-2]. In order to store unicode information, the column data types must be specified as one of the national character types, NVARCHAR, NCHAR or NTEXT.
In order to retrieve data saved in unicode format, M$ suggest users to cast columns to binary data.Unfortunately php_mssql extension doesn't support binary data to be returned in string columns.
My advice is to use FreeTDS driver [it's just an php extension]. This driver seems to handle unicode data better. I can put and receive unicode with casting or change encoding.
A good tutorial "Using freeTDS" can be found here
http://docs.moodle.org/en/Installing_MSSQL_for_PHP
However, freeTDS is not a perfect solution for unicode data. I'm not able to execute stored procedures with mssql_bind, mssql_bind without having my text changed.
AA
11-Mar-2009 06:26
On windows, do not use this for mssql 2005 of later. The methods of access are deprecated.
Use the Microsoft SQL Server 2005 Driver for PHP instead.
Current link is.
http://www.microsoft.com/sqlserver/2005/en/us/PHP-Driver.aspx
