epgsql
epgsql copied to clipboard
Erlang PostgreSQL client
I'm missing COPY command implementation. Is there any plan to add it?
Sometimes, when database is slow and number of requests is big psql_connection is crushing because of message 'timeout' got in state 'timeout'. Is it a valid behaviour? I am using...
The following query works: ``` erlang pgsql:equery(C, "select name from servers where id = any ($1)", [[1, 2, 4]]). ``` whereas this one does not: ``` erlang pgsql:equery(C, "select name...
I've added support for all time and date arrays and added tests for them. Thanks
We've been happy with epgsql but the need to manually sync after an error has caused us a few problems. These two commits enable pgsql_connection to automatically initiate a database...
Here's some commits I made to make the project cleaner and more up-to-date. I hope you will find them useful.
fixes issue #36
``` ==> epgsql (compile) compile: warnings being treated as errors compile: warnings being treated as errors Compiled src/pgsql.erl src/pgsql_sock.erl:68: variable 'State2' exported from 'case' (line 59) src/pgsql_idatetime.erl:47: variable 'J4' exported...
It would be great to add support for PostgreSQL v9.2 It has support for JSON data types, which is a huge upgrade from the original hstore data type. Any plans...