0

For a rest service written in DENO - i.e Nodejs replacement, I need to query oracle database.

How can I do that? Any examples?

Note: I do see postgres libs, but that's not my current need.

Note2: If currently no solution, just make the question more visible so the 'gods' know that there is a popular-demand.

Espresso
  • 5,378
  • 4
  • 35
  • 66

2 Answers2

0

Deno is pretty young, I doubt that we already an Oracle driver implemented in Deno (But I might be wrong). If you want to build a production-ready application I suggest you to stick with Node.js until Deno has all the libraries and driver that you require.

cefeboru
  • 332
  • 3
  • 4
  • 12
0

You can see all the third-party libraries available for Deno here. There is limited database support. Check out this library for MySQL, SQLite and PostgreSQL. Not sure there's any for Oracle.

tksilicon
  • 3,276
  • 3
  • 24
  • 36