Name Date Size #Lines LOC

..18-Feb-2024-

README.mdH A D30-Aug-2022764 128

batch_stmt_ins_exec.phptH A D12-Jan-20241.6 KiB6556

batch_stmt_ins_sel_up_del.phptH A D12-Jan-20241.7 KiB7765

batch_stmt_ins_up.phptH A D12-Jan-20241.4 KiB6253

batch_stmt_rowcount.phptH A D12-Jan-20242.7 KiB147131

batch_stmt_transaction.phptH A D12-Jan-20242.2 KiB114101

batch_stmt_try.phptH A D12-Jan-20242.1 KiB10289

bug_38955.phptH A D12-Jan-20241.2 KiB6661

bug_45876.phptH A D12-Jan-2024747 4543

bug_47588.phptH A D12-Jan-20241,012 5250

bug_50755.phptH A D12-Jan-2024635 3731

bug_54648.phptH A D12-Jan-2024603 3029

bug_67130.phptH A D12-Jan-2024684 4138

bug_68957.phptH A D12-Jan-2024514 3328

bug_69592.phptH A D12-Jan-20241.1 KiB6556

bug_69757.phptH A D12-Jan-2024693 3733

bug_71667.phptH A D12-Jan-2024545 3935

bug_73396.phptH A D12-Jan-2024710 2622

common.phptH A D30-Aug-2022367 1614

config.incH A D12-Jan-20241.9 KiB7257

datetime2.phptH A D12-Jan-2024944 4134

datetime_convert.phptH A D12-Jan-2024828 4134

dbtds.phptH A D12-Jan-2024407 2218

dbversion.phptH A D12-Jan-2024366 2218

pdo_dblib_param_str_natl.phptH A D12-Jan-2024588 3228

pdo_dblib_quote.phptH A D12-Jan-20241.6 KiB5246

pdodblib_001.phptH A D12-Jan-2024733 4540

pdodblib_002.phptH A D12-Jan-2024849 4943

stringify_uniqueidentifier.phptH A D12-Jan-20242.5 KiB7257

timeout.phptH A D12-Jan-20241.9 KiB8169

types.phptH A D12-Jan-20241.8 KiB8676

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