summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorD060938 <sebastian.pfahl@sap.com>2016-01-11 06:24:53 -0800
committerGordon Franke <gordon.franke@sap.com>2016-02-03 07:53:24 +0100
commit44377a665aad2777e0c3c82a6a1e674eeb56eb80 (patch)
tree2d790510d4372f34105c8ade77a487a69ab9a893
parent4b0351e22ff3ce4c71efd5b3a137e57f86e38390 (diff)
downloadphp7-mysql-shim-44377a665aad2777e0c3c82a6a1e674eeb56eb80.zip
php7-mysql-shim-44377a665aad2777e0c3c82a6a1e674eeb56eb80.tar.gz
php7-mysql-shim-44377a665aad2777e0c3c82a6a1e674eeb56eb80.tar.bz2
added info to README.md
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5f17442..fa0dfde 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,9 @@ Once the file is included, it will create `mysql_*` function if they don't alrea
## Caveats
- Calls to `is_resource()` and `get_resource_type()` on MySQL connections and results will fail as these are now their `mysqli` equivalents.
+<<<<<<< HEAD
- Some errors are now from `ext/mysqli`, and others are `E_USER_WARNING` instead of `E_WARNING`.
-- You must use the `mysqli.*` INI entries instead of `mysql.*` (e.g. `mysqli.default_user` instead of `mysql.default_usert`)
+- You must use the `mysqli.*` INI entries instead of `mysql.*` (e.g. `mysqli.default_user` instead of `mysql.default_user`)
- Column lengths reported by `mysql_field_len()` assume `latin1`
+- If no host, username, password parameter is provided when using the `mysql_*` functions, the default values from the corresponding `mysqli.*` settings from `php.ini` file will be used
+(e.g. `mysqli.default_host`, `mysqli.default_user`, `mysqli.default_pw`)