Google Apps Script sync with oracle -


i trying fetch data oracle google apps script, able fetch data simple queries like

select * emp_table 

and

select * emp_table emp_name = "dhananjay" 

but not able fetch data below query

select * emp_table emp_id = 1100 

in above case other relational operators working fine equal not working numerical field.

need on fetching data oracle google apps script. statement using :

 var rs = stmt.executequery('select * emp_table emp_id = 1100'); 


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -