mirror of
https://github.com/php/php-src.git
synced 2026-03-30 20:22:36 +02:00
* Remove usage of SDWORD, replace with SQLINTEGER Some different driver managers disagree if this should be 4 or 8 bytes in size. SQLGetDiagRec expects this to be an SQLINTEGER, so we should just use that explicitly instead of hoping that it's the same size. Fixes GH-14367 * Replace SWORD with SQLSMALLINT While this hasn't caused issues like the SQLINTEGER/SDWORD confusion has, we should use what SQLDescrimeParam calls for, which is SQLSMALLINT.