there are same problem with VARBINARY, if you are forced to use existing database with such fields you can do it like this:
SELECT CAST(master.dbo.fn_varbintohexstr(VARBINARYFIELD) AS TEXT) FROM table;
(PHP 4, PHP 5, PECL odbtp >= 1.1.1)
mssql_field_length — Retorna o tamanho de um campo
$result
[, int $offset
] ) : int
Esta função irá retornar o tamanho do campo número offset
no
conjunto de resultados result
. Se offset
for omitido,
o campo atual é usado.
Nota: Nota para os usuários de Win32
Devido a uma limitação da API usada pelo PHP (MS DbLib C API), o tamanho de campos VARCHAR é limitado em 255. Se você precisar guardar mais dados, use um campo TEXT.
there are same problem with VARBINARY, if you are forced to use existing database with such fields you can do it like this:
SELECT CAST(master.dbo.fn_varbintohexstr(VARBINARYFIELD) AS TEXT) FROM table;