Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 25-Sep-2024 | - | ||||
README.md | H A D | 25-Sep-2024 | 764 | 12 | 8 | |
batch_stmt_ins_exec.phpt | H A D | 25-Sep-2024 | 1.6 KiB | 65 | 56 | |
batch_stmt_ins_sel_up_del.phpt | H A D | 25-Sep-2024 | 1.7 KiB | 77 | 65 | |
batch_stmt_ins_up.phpt | H A D | 25-Sep-2024 | 1.4 KiB | 62 | 53 | |
batch_stmt_rowcount.phpt | H A D | 25-Sep-2024 | 2.7 KiB | 147 | 131 | |
batch_stmt_transaction.phpt | H A D | 25-Sep-2024 | 2.2 KiB | 114 | 101 | |
batch_stmt_try.phpt | H A D | 25-Sep-2024 | 2.1 KiB | 102 | 89 | |
bug_38955.phpt | H A D | 25-Sep-2024 | 1.2 KiB | 66 | 61 | |
bug_45876.phpt | H A D | 25-Sep-2024 | 747 | 45 | 43 | |
bug_47588.phpt | H A D | 25-Sep-2024 | 1,012 | 52 | 50 | |
bug_50755.phpt | H A D | 25-Sep-2024 | 635 | 37 | 31 | |
bug_54648.phpt | H A D | 25-Sep-2024 | 603 | 30 | 29 | |
bug_67130.phpt | H A D | 25-Sep-2024 | 684 | 41 | 38 | |
bug_68957.phpt | H A D | 25-Sep-2024 | 514 | 33 | 28 | |
bug_69592.phpt | H A D | 25-Sep-2024 | 1.1 KiB | 65 | 56 | |
bug_69757.phpt | H A D | 25-Sep-2024 | 693 | 37 | 33 | |
bug_71667.phpt | H A D | 25-Sep-2024 | 545 | 39 | 35 | |
bug_73396.phpt | H A D | 25-Sep-2024 | 710 | 26 | 22 | |
common.phpt | H A D | 25-Sep-2024 | 367 | 16 | 14 | |
config.inc | H A D | 25-Sep-2024 | 1.9 KiB | 72 | 57 | |
datetime2.phpt | H A D | 25-Sep-2024 | 944 | 41 | 34 | |
datetime_convert.phpt | H A D | 25-Sep-2024 | 828 | 41 | 34 | |
dbtds.phpt | H A D | 25-Sep-2024 | 407 | 22 | 18 | |
dbversion.phpt | H A D | 25-Sep-2024 | 366 | 22 | 18 | |
pdo_dblib_param_str_natl.phpt | H A D | 25-Sep-2024 | 588 | 32 | 28 | |
pdo_dblib_quote.phpt | H A D | 25-Sep-2024 | 1.6 KiB | 52 | 46 | |
pdodblib_001.phpt | H A D | 25-Sep-2024 | 735 | 45 | 40 | |
pdodblib_002.phpt | H A D | 25-Sep-2024 | 852 | 49 | 43 | |
stringify_uniqueidentifier.phpt | H A D | 25-Sep-2024 | 2.5 KiB | 72 | 57 | |
timeout.phpt | H A D | 25-Sep-2024 | 1.9 KiB | 81 | 69 | |
types.phpt | H A D | 25-Sep-2024 | 1.8 KiB | 86 | 76 |
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