Name Date Size #Lines LOC

..11-Aug-2022-

CONFLICTSH A D26-Aug-202210 21

README.mdH A D31-Aug-2021764 128

batch_stmt_ins_exec.phptH A D31-Aug-20211.4 KiB6454

batch_stmt_ins_sel_up_del.phptH A D31-Aug-20211.5 KiB7563

batch_stmt_ins_up.phptH A D31-Aug-20211.2 KiB6151

batch_stmt_rowcount.phptH A D31-Aug-20212.5 KiB146129

batch_stmt_transaction.phptH A D31-Aug-20212 KiB11399

batch_stmt_try.phptH A D31-Aug-20212 KiB10187

bug_38955.phptH A D31-Aug-20211.1 KiB5954

bug_45876.phptH A D01-Sep-2021685 4139

bug_47588.phptH A D31-Aug-2021978 4745

bug_50755.phptH A D31-Aug-2021572 3227

bug_54648.phptH A D31-Aug-2021559 2827

bug_67130.phptH A D31-Aug-2021639 3836

bug_68957.phptH A D31-Aug-2021469 3026

bug_69592.phptH A D31-Aug-20211.1 KiB6254

bug_69757.phptH A D31-Aug-2021648 3431

bug_71667.phptH A D31-Aug-2021500 3633

bug_73396.phptH A D31-Aug-2021659 2320

common.phptH A D31-Aug-2021367 1614

config.incH A D31-Aug-20211.2 KiB4335

datetime2.phptH A D31-Aug-2021893 3832

datetime_convert.phptH A D31-Aug-2021783 3832

dbtds.phptH A D31-Aug-2021362 1916

dbversion.phptH A D31-Aug-2021321 1916

pdo_dblib_param_str_natl.phptH A D01-Sep-2021543 2926

pdo_dblib_quote.phptH A D31-Aug-20211.5 KiB5044

stringify_uniqueidentifier.phptH A D31-Aug-20212.5 KiB7055

timeout.phptH A D31-Aug-20211.9 KiB7867

types.phptH A D31-Aug-20211.8 KiB8374

README.md

1# The pdo_mysql extension tests
2
3This extension can be tested using Microsoft's Docker image for [SQL Server on Linux](https://hub.docker.com/_/microsoft-mssql-server):
4
5```bash
6docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" -p 1433:1433 --name sql1 -h sql1 -d mcr.microsoft.com/mssql/server:2019-latest
7docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "create login pdo_test with password='password', check_policy=off; create user pdo_test for login pdo_test; grant alter, control to pdo_test;"
8
9# and then from the root of php-src
10PDO_DBLIB_TEST_DSN="dblib:host=127.0.0.1;dbname=master;version=7.0" PDO_DBLIB_TEST_USER="pdo_test" PDO_DBLIB_TEST_PASS="password" TESTS=ext/pdo_dblib make test
11```
12