|
2 年之前 | |
---|---|---|
.. | ||
CONFLICTS | 2 年之前 | |
README.md | 2 年之前 | |
batch_stmt_ins_exec.phpt | 2 年之前 | |
batch_stmt_ins_sel_up_del.phpt | 2 年之前 | |
batch_stmt_ins_up.phpt | 2 年之前 | |
batch_stmt_rowcount.phpt | 2 年之前 | |
batch_stmt_transaction.phpt | 2 年之前 | |
batch_stmt_try.phpt | 2 年之前 | |
bug_38955.phpt | 2 年之前 | |
bug_45876.phpt | 2 年之前 | |
bug_47588.phpt | 2 年之前 | |
bug_50755.phpt | 2 年之前 | |
bug_54648.phpt | 2 年之前 | |
bug_67130.phpt | 2 年之前 | |
bug_68957.phpt | 2 年之前 | |
bug_69592.phpt | 2 年之前 | |
bug_69757.phpt | 2 年之前 | |
bug_71667.phpt | 2 年之前 | |
bug_73396.phpt | 2 年之前 | |
common.phpt | 2 年之前 | |
config.inc | 2 年之前 | |
datetime2.phpt | 2 年之前 | |
datetime_convert.phpt | 2 年之前 | |
dbtds.phpt | 2 年之前 | |
dbversion.phpt | 2 年之前 | |
pdo_dblib_param_str_natl.phpt | 2 年之前 | |
pdo_dblib_quote.phpt | 2 年之前 | |
stringify_uniqueidentifier.phpt | 2 年之前 | |
timeout.phpt | 2 年之前 | |
types.phpt | 2 年之前 |
This extension can be tested using Microsoft's Docker image for SQL Server on Linux:
docker 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
docker 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;"
# and then from the root of php-src
PDO_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