History log of /PHP-8.2/ext/pdo_odbc/tests/bug80783a.phpt (Results 1 – 5 of 5)
Revision Date Author Comments
# f4a5db3e 28-Oct-2023 Máté Kocsis

Parallelize pdo tests (dblib, firebird, oci, odbc, pgsql) (#12395)

Co-authored-by: George Peter Banyard <girgias@php.net>
Co-authored-by: Jorg Adam Sowa <jorg.sowa@gmail.com>


# 462792ee 22-Aug-2023 Máté Kocsis

Expose PDO_ODBC_TYPE to userland


# 8726ae06 08-Aug-2023 Máté Kocsis

Improve and fix ext/odbc tests

Some test failures are fixed, parallelization is enabled, section order is fixed.


# 74859783 11-Jun-2021 Nikita Popov

Migrate SKIPIF -> EXTENSIONS (#7138)

This is an automated migration of most SKIPIF extension_loaded checks.


# bccca0b5 25-Feb-2021 Christoph M. Becker

Fix #80783: PDO ODBC truncates BLOB records at every 256th byte

It is not guaranteed, that the driver inserts only a single NUL byte at
the end of the buffer. Apparently, there is no wa

Fix #80783: PDO ODBC truncates BLOB records at every 256th byte

It is not guaranteed, that the driver inserts only a single NUL byte at
the end of the buffer. Apparently, there is no way to find out the
actual data length in the buffer after calling `SQLGetData()`, so we
adjust after the next `SQLGetData()` call.

We also prevent PDO::ODBC_ATTR_ASSUME_UTF8 from fetching garbage, by
fetching all chunks with the same C type.

Closes GH-6716.

show more ...