diff options
author | Noah Heck <myesain84@gmail.com> | 2014-05-15 00:16:08 -0600 |
---|---|---|
committer | Noah Heck <myesain84@gmail.com> | 2014-05-15 00:16:08 -0600 |
commit | 1a0f9ed2a2ec07342d154b9eacb775b05c8e89c7 (patch) | |
tree | bee5cfab865fa8ea659b4fa45b288470f6d19664 | |
parent | c266f821f036ca6873894274f10987800355d78d (diff) | |
download | E_PDOStatement-1a0f9ed2a2ec07342d154b9eacb775b05c8e89c7.zip E_PDOStatement-1a0f9ed2a2ec07342d154b9eacb775b05c8e89c7.tar.gz E_PDOStatement-1a0f9ed2a2ec07342d154b9eacb775b05c8e89c7.tar.bz2 |
Update README.md
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ echo $stmt->fullQuery; The result of this will be (on a MySQL database): ``` -INSERT INTO users SET username = 'admin', password = '45ab6941fed66456afe6239ab875e4fa'; +INSERT INTO users SET username = 'admin', password = '45ab6941fed66456afe6239ab875e4fa' ``` When correctly configured, the interpolated values are properly escaped appropriately for the database driver, allowing the generated string to be suitable for e.g. log files, backups, etc. @@ -112,4 +112,4 @@ Ideally, your project would have a PDO abstraction/wrapper class allowing you to ##Get in Touch There are a lot of forum posts related to or requesting this type of functionality, so hopefully someone somewhere will find it helpful. If it helps you, comments are of course appreciated. -Bugs, new feature requests and pull requests are of course welcome as well. This was created to help our pro team solve an issue, so it was designed around our specific work flow. If it doesn't work for you though, let me know and I'll be happy to explore if I can help you out.
\ No newline at end of file +Bugs, new feature requests and pull requests are of course welcome as well. This was created to help our pro team solve an issue, so it was designed around our specific work flow. If it doesn't work for you though, let me know and I'll be happy to explore if I can help you out. |