summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Support async pgsql connections and non-blocking queriesDaniel Lowrey2014-03-171-98/+381
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - New functions (each accepts a pgsql $connection resource): . pg_connect_poll . pg_socket . pg_consume_input . pg_flush - Modified functions The following functions now additionally return zero if the underlying socket is set to non-blocking mode and the send operation does not complete immediately. Previously these functions returned only boolean TRUE/FALSE and blocked execution while polling until all data was sent: . pg_send_execute . pg_send_prepare . pg_send_query . pg_send_query_params - New constants Used with pg_connect() to initiate an asynchronous connection attempt: . PGSQL_CONNECT_ASYNC Used with pg_connection_status() to determine the current state of an async connection attempt: . PGSQL_CONNECTION_STARTED . PGSQL_CONNECTION_MADE . PGSQL_CONNECTION_AWAITING_RESPONSE . PGSQL_CONNECTION_AUTH_OK . PGSQL_CONNECTION_SSL_STARTUP . PGSQL_CONNECTION_SETENV Used with pg_connect_poll() to determine the result of an async connection attempt: . PGSQL_POLLING_FAILED . PGSQL_POLLING_READING . PGSQL_POLLING_WRITING . PGSQL_POLLING_OK . PGSQL_POLLING_ACTIVE - Polling via returned pg_socket() stream pg_socket() returns a read-only socket stream that may be cast to a file descriptor for select (and similar) polling operations. Blocking behavior of the pgsql connection socket can be controlled by calling stream_set_blocking() on the stream returned by pg_socket().
| * | | simplify the metadata partAnatol Belski2014-02-171-18/+6
| | | |
| * | | Imprement FR #25854 Return value for pg_insert should be resource instead of ↵Yasuo Ohgaki2014-02-171-3/+51
| | | | | | | | | | | | | | | | bool
| * | | Implement FR #41146 - Add "description" with exteneded flag pg_meta_data().Yasuo Ohgaki2014-02-171-39/+57
| | | | | | | | | | | | | | | | | | | | pg_meta_data(resource $conn, string $table [, bool extended]) It also made pg_meta_data() return "is enum" always.
| * | | EXPERIMENTAL flags for pg_select/pg_insert/pg_update/pg_delete are removed.Yasuo Ohgaki2014-02-161-84/+125
| | | | | | | | | | | | | | | | | | | | Use string escape for exotic types that allows to handle any data types. i.e. Array, JSON, JSONB, etc will work. Add escape only query for better performance which removes meta data look up. Limitations forced by pg_convert() can be avoided with this. PGSQL_DML_ESCAPE constant is added for it.
| * | | Merge branch 'PHP-5.5' into PHP-5.6Yasuo Ohgaki2014-02-161-10/+20
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: Fixed possbile injections against pg_insert()/pg_delete()/pg_update()/pg_select()
| | * | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2014-02-161-10/+20
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Fixed possbile injections against pg_insert()/pg_delete()/pg_update()/pg_select()
| | | * Fixed possbile injections against ↵Yasuo Ohgaki2014-02-161-10/+20
| | | | | | | | | | | | | | | | pg_insert()/pg_delete()/pg_update()/pg_select()
| * | | Merge branch 'PHP-5.5' into PHP-5.6Yasuo Ohgaki2014-02-161-27/+8
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: Refactor build_tablename()
| | * | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2014-02-161-27/+8
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Refactor build_tablename()
| | | * Refactor build_tablename()Yasuo Ohgaki2014-02-161-27/+8
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Yasuo Ohgaki2014-02-161-4/+3
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: Revise encoding blacklist
| | * | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2014-02-161-4/+3
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Revise encoding blacklist
| | | * Revise encoding blacklistYasuo Ohgaki2014-02-161-4/+3
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Felipe Pena2014-02-151-0/+2
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | * PHP-5.5: - Fix ZTS build when HAVE_PQESCAPELITERAL is not set Update NEWS Update NEWS
| | * | Merge branch 'PHP-5.4' into PHP-5.5Felipe Pena2014-02-151-0/+2
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | * PHP-5.4: - Fix ZTS build when HAVE_PQESCAPELITERAL is not set Update NEWS
| | | * - Fix ZTS build when HAVE_PQESCAPELITERAL is not setFelipe Pena2014-02-151-0/+2
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Yasuo Ohgaki2014-02-151-284/+267
| |\ \ \ | | |/ /
| | * | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2014-02-151-284/+267
| | |\ \ | | | |/
| | | * Refactor and cleanup. WS is cleaned up. Use -b if it is needed.Yasuo Ohgaki2014-02-151-284/+267
| | | | | | | | | | | | | | | | Added compatibility macros, PQescapeStringConn, PGSQLescapeLiteral/Identifier, PGSQLfree.
| * | | Merge branch 'PHP-5.5' into PHP-5.6Anatol Belski2014-01-221-0/+3
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: fixed missing usleep() prototype in pgsql
| | * | Merge branch 'PHP-5.4' into PHP-5.5Anatol Belski2014-01-221-0/+3
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: fixed missing usleep() prototype in pgsql
| | | * fixed missing usleep() prototype in pgsqlAnatol Belski2014-01-221-0/+3
| | | |
| | | * Bump yearXinchen Hui2014-01-031-1/+1
| | | |
| | * | Bump yearXinchen Hui2014-01-031-1/+1
| | | |
* | | | Cleanup (1-st round)Dmitry Stogov2014-04-151-35/+23
|/ / /
* | | Added pg_lo_truncate() and 64bit large object support from PostgreSQL 9.3 and upYasuo Ohgaki2014-01-151-3/+65
| | |
* | | Always initialize pg_version() result array elements to prevent failed test ↵Yasuo Ohgaki2014-01-151-30/+21
| | | | | | | | | | | | with older postgresql servers. Add missing client_encoding element.
* | | Fixed pg_version() crash with older postgresqlYasuo Ohgaki2014-01-151-10/+31
| | |
* | | Made pg_version() return full connection info.Yasuo Ohgaki2014-01-141-1/+11
| | |
* | | Bump yearXinchen Hui2014-01-031-1/+1
|/ /
* | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2013-10-221-1/+1
|\ \ | |/ | | | | | | * PHP-5.4: Fix Coverity issue reporting wrong sizeof()
| * Fix Coverity issue reporting wrong sizeof()Yasuo Ohgaki2013-10-221-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Matteo Beccati2013-08-221-1/+4
|\ \ | |/ | | | | | | * PHP-5.4: Fixed other compiler warnings
| * Fixed other compiler warningsMatteo Beccati2013-08-221-1/+4
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Matteo Beccati2013-08-211-16/+25
|\ \ | |/ | | | | | | | | | | * PHP-5.4: Fixed compiler warnings in ext/pgsql Fixed other compiler warnings in PDO_PGSQL Fixed compiler warning
| * Fixed compiler warnings in ext/pgsqlMatteo Beccati2013-08-211-16/+25
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Anatol Belski2013-08-121-2/+1
|\ \ | |/ | | | | | | * PHP-5.4: removed unused vars
| * removed unused varsAnatol Belski2013-08-121-2/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Anatol Belski2013-08-121-3/+25
|\ \ | |/ | | | | | | * PHP-5.4: fixed strndup usage in the pgsql ext
| * fixed strndup usage in the pgsql extAnatol Belski2013-08-121-3/+25
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Yasuo Ohgaki2013-08-051-28/+150
|\ \ | |/ | | | | | | * PHP-5.4: Fixed bug #62978. pg_select()/etc may allow SQL injection when table name is user parameter, users are able to control table names.
| * Fixed bug #62978. pg_select()/etc may allow SQL injection when table name is ↵Yasuo Ohgaki2013-08-051-28/+150
| | | | | | | | user parameter, users are able to control table names.
| * Fixed bug #65336Yasuo Ohgaki2013-07-271-1/+2
| |
* | Fixed bug #65336Yasuo Ohgaki2013-07-271-1/+2
| |
* | HASH_KEY_NON_EXISTANT fixVeres Lajos2013-07-211-3/+3
| |
* | Inprove pg_unescape_bytea() error messageYasuo Ohgaki2013-07-131-1/+1
| |
* | Add warning to pg_unescape_bytea() when invalid parameter is passedYasuo Ohgaki2013-07-081-0/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Andrey Hristov2013-06-261-0/+36
|\ \ | |/ | | | | | | Conflicts: NEWS
| * Fixed bug #65015 (pg_send_query does not flush send buffer) patch submitted ↵Yasuo Ohgaki2013-06-261-0/+36
| | | | | | | | by: adam at vektah dot net