Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 2.34 KB

default-sql-server-data-types.md

File metadata and controls

43 lines (36 loc) · 2.34 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
Default SQL Server data types
This topic lists all the default SQL Server Data types based on PHP Data Types when using the Microsoft SQLSRV Driver for PHP for SQL Server
David-Engel
davidengel
08/10/2020
sql
connectivity
conceptual
default data types
converting data types

Default SQL Server Data Types

[!INCLUDEDriver_PHP_Download]

When sending data to the server, the [!INCLUDEssDriverPHP] converts data from its PHP data type to a SQL Server data type if no SQL Server data type has been specified by the user. The table that follows lists the PHP data type (the data type being sent to the server) and the default SQL Server data type (the data type to which the data is converted). For details about how to specify data types when sending data to the server, see How to: Specify SQL Server Data Types When Using the SQLSRV Driver.

PHP Data Type Default SQL Server Type in the SQLSRV Driver Default SQL Server Type in the PDO_SQLSRV Driver
NULL varchar(1) not supported
Boolean bit bit
Integer int int
Float float(24) not supported
String (length less than 8000 bytes) varchar(<string length>) varchar(<string length>)
String (length greater than 8000 bytes) varchar(max) varchar(max)
Resource Not supported. Not supported.
Stream (encoding: not binary) varchar(max) varchar(max)
Stream (encoding: binary) varbinary varbinary
Array Not supported. Not supported.
Object Not supported. Not supported.
DateTime (1) datetime Not supported.

See Also

Constants (Microsoft Drivers for PHP for SQL Server)

Converting Data Types

sqlsrv_field_metadata

PHP Types

Data Types (Transact-SQL)