Postgres Pain Points 2 ruby / node language drivers

From: support-tiger <support(at)tigernassau(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Postgres Pain Points 2 ruby / node language drivers
Date: 2016-08-11 17:13:08
Message-ID: c8089aaa-c946-7f76-6c52-57410ada125a@tigernassau.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

A database is only as good as the ability to use it. Using ORM's with
Postgres seems dumb, like having a Ferrari but only allowed to drive 25
kmh. Really, for getting data in and out with Postgres, SQL is pretty
simple. The ORM abstractions take as much effort as simply writing
direct SQL statements and convenience functions with straight sql.
Ruby: The "pg" driver seems to be tweaked to work okay with active
record, and maybe Sequel, but we are having problems with with straight
ruby/sinatra. (see comments above re ORM's). Since we changed to
Fedora and Ruby 2.3, we are now having breaking connections and JSONB
query problems. This could be from lack of clear docs and examples - we
cant' find any good examples or tutorials with JSONB. It seems with this
driver it is Rails or the highway.

Nodejs: The docs and tutorials for "node-postgres" are a mess. The
github readme, examples, and wikis are all different. Then there is
"native" and "pooling" and prepared statement alternatives. Callback
hell is bad enough, then to have lots of different approaches.
Async/Await should help this issue (whenever it arrives in Node) but
meanwhile, it's a painful struggle. Whatever examples exist are for
such trivial use, they fall short of helping with real-life examples,
like sequential results.

Python: The Postgres team supported driver psycopg2 seems to work great
(but we really don't want to rewrite lots of code into python

It would be great if the Ruby and Node drivers can be brought under the
Postgres team umbrella and make them as reliable and clearly documented
as the Python or jdbc drivers.

--
Support Dept
Tiger Nassau, Inc.
www.tigernassau.com
406-624-9310

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Artur Zakirov 2016-08-11 17:13:10 Re: Updated RUM-index and support for bigint as part of index
Previous Message Adrian Klaver 2016-08-11 17:11:13 Re: Postgres Pain Points: 1 pg_hba conf