Are you writing a "node.js" application and would like to access Teiid VDB from it?
If "yes", this is currently possible using NPM package "pg". Since, Teiid supports the PG transport, you can use this PostgreSQL client for "node.js" for accessing the Teiid.
For example if you have VDB called "northwind" deployed on your Teiid server, and it has table called "customers" and you are using default configuration such as
user = 'user'
password = 'user'
host = 127.0.0.1
port = 35432
then you can use following to write simple access program to Teiid
If "yes", this is currently possible using NPM package "pg". Since, Teiid supports the PG transport, you can use this PostgreSQL client for "node.js" for accessing the Teiid.
For example if you have VDB called "northwind" deployed on your Teiid server, and it has table called "customers" and you are using default configuration such as
user = 'user'
password = 'user'
host = 127.0.0.1
port = 35432
then you can use following to write simple access program to Teiid
var pg = require('pg'); var connectionString = "pg://user:user@localhost:35432/northwind" pg.connect(connectionString, function(err, client) { client.query('SELECT CustomerID, ContactName, ContactTitle FROM Customers', function(err, result) { console.log(result.rows) }); });If you want access one row at a time, you can also use event mechanism and write
var pg = require('pg'); var connectionString = "pg://user:user@localhost:35432/northwind" pg.connect(connectionString, function(err, client) { var query = client.query('SELECT CustomerID, ContactName, ContactTitle FROM Customers'); query.on('row', function(row) { console.log(row); }); query.on('error', function(error) { console.log("failed to query"); }); query.on('end', function(error) { console.log("closing client"); client.end(); }); });For more information please take look at
https://npmjs.org/package/pg
https://github.com/brianc/node-postgres
If you do write an application using these please do share your experiences with us.
Which version of TEIID support this feature?
ReplyDeleteWith TEIID 8.2 there are problems.
Any hint?
Thanks
Luca
I tested with 8.3, but it should work with 8.2 as I did not find any fixes that related to postgres port in 8.3 cycle. what errors are you seeing?
Deletewell I'm seeing nothing it seems that the node application does not issue any request.
ReplyDeleteAre you testing it just local or also on different machines?
I have TEIID on host1 and node on host2 and nothing ...
OK now it works!!!!
ReplyDeleteLuca,
ReplyDeleteI only tested locally, if there is any trick you had to make it work, please do explain here for others.
Thanks
Ramesh..
Hello all,
ReplyDeleteHas anyone tried using a parameterized query with node pg and JBoss? Sending a text query works fine just as you explained (client.query('SELECT CustomerID, ContactName, ContactTitle FROM Customers').
However, if we try:
client.query('SELECT CustomerID, ContactName, ContactTitle FROM Customers WHERE CustomerID = $1', [100])
Then, the JBoss connection is closed. We can confirm that rows of data are returned, however, the node pg module seems to detect that stream has ended, and thus it throws the error "Error: Connection terminated unexpectedly".
Has anyone else experienced this?
Hi Unknown,
ReplyDeleteCould you turn this question into a JIRA issue? Can you provide information such as the Teiid version and the pg package version?
Hi Steven!
DeleteThank you so much for the fast response! We will go ahead and turn the question into a JIRA issue!
In the meantime, would you happen to have an example of using a parameterized query with the node pg module and Teiid? Are you aware if other people have successfully done this?
Thank you so much, Steven!
Brian
Brian,
DeleteThanks for logging https://issues.jboss.org/browse/TEIID-5014 it will be addressed in subsequent releases.
Hi man! Good article! I have one question, its possible connect to Teiid with PHP.. im use PHP a lot.... indeed, i use Codeigniter, you thinks that the connection its posible?
ReplyDeleteThanks! :D
PHP should be possible using their pg connectivity. We have not explicitly tested that path though. If you run into issues, please use the forums or JIRA - https://issues.jboss.org/projects/TEIID
ReplyDelete