Should the Node.js driver/connector for PostgreSQL be expected to function for Postgres-XL? What is the best way to connect to a Postgres-XL setup from Node.js?
Asked
Active
Viewed 255 times
1
-
1The [FAQ](http://www.postgres-xl.org/faq/) states: _"Postgres-XL is wire-level protocol compatible with PostgreSQL. That means Postgres-XL will work with any PostgreSQL-compatible driver"_. – robertklep Aug 06 '15 at 14:06
-
If your [pgAdmin](http://www.pgadmin.org/) works with Postgres-XL, then any NodeJS driver will work just the same. – vitaly-t Aug 06 '15 at 18:40
1 Answers
0
Postgres-XL is just the standard Postgres engine with a lot of distributed transactional over head options added so it can scale up to much large setups so you can use the standard Postgres driver. You just want to make sure the versions match.

BrianC
- 1,793
- 1
- 18
- 26