Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features: Binding of NCHAR...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features: Binding of NCHAR and new types; Finer grained control on bind data types; New result.lastRowid support; Client-initiated CQN connections Significant changes in node-oracledb 4.2 are: New bind types and improvements. First, some background: when executing SQL, binding data values to the statement (instead of using string...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features: Binding of NCHAR and new types; Finer grained control...
Welcome to this two part series on using Docker for Oracle Database applications. Part 1: Installing Docker and Creating Images with the Oracle Client Part 2:...
Welcome to this two part series on using Docker for Oracle Database applications. Part 1: Installing Docker and Creating Images with the Oracle Client Part 2: Creating Docker containers that connect to Oracle Database The examples are for Node.js and Python, but the concepts are also useful for the many other languages whose database APIs are implemented on top of Oracle Call Interface; these other languages include C, PHP, Go, Ruby, Rust, Erlang, Julia, Nim, and Haskell....
Welcome to this two part series on using Docker for Oracle Database applications. Part 1: Installing Docker and Creating Images with the Oracle Client Part 2: Creating Docker containers that...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features: Oracle Sharding...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features: Oracle Sharding Support See the CHANGELOG for all changes and bug fixes. Significant changes in node-oracledb 4.1 are: Support for Oracle Sharding. Sharding can be used to horizontally partition data across independent databases. A database table can be split so each shard contains a table with the same columns but a different subset...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features: Oracle Sharding Support See the CHANGELOG for all...
Looking for Python and Node.s presentations from the recent Oracle OpenWorld and AUSOUG/Groundbreakers conferences? Look no further. Powerful JavaScript...
Looking for Python and Node.s presentations from the recent Oracle OpenWorld and AUSOUG/Groundbreakers conferences? Look no further. Powerful JavaScript Applications for Oracle Database - slides are here. Developing and Deploying Python and Node.js Applications in Docker - slides are here. Python: The New Favorite Programming Environment for Oracle Database Applications - slides are here. Scalability and High Availability for Oracle Database Python Applications - slides are...
Looking for Python and Node.s presentations from the recent Oracle OpenWorld and AUSOUG/Groundbreakers conferences? Look no further. Powerful JavaScript Applications for Oracle Database - slides...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features in node-oracledb...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features in node-oracledb 4.0: Querying and binding of named Oracle types; Oracle Advanced Queuing API. The team has been working hard on node-oracledb 4.0 and is very pleased to release it to you. You can install node-oracledb 4.0 from npm. It requires Node.js 8 or higher. With Node.js 8 the minimum patch level is 8.16. With Node.js 10 the...
Release announcement: A new release of node-oracledb, the Node.js module for accessing Oracle Database, is available from npm. Top features in node-oracledb 4.0: Querying and binding of named Oracle...
Things change fast and it's time for an update on running Node.js in Docker. Let's dive right in. Here's a Dockerfile that pulls the lightweight Oracle Linux...
Things change fast and it's time for an update on running Node.js in Docker. Let's dive right in. Here's a Dockerfile that pulls the lightweight Oracle Linux "slim" image, installs the latest Node.js runtime, and installs the Oracle Client libraries needed for the node-oracledb module. Note no Docker store login or manual downloads are required: FROM oraclelinux:7-slim RUN yum -y install oracle-release-el7 oracle-nodejs-release-el7 && \ yum-config-manager --disable...
Things change fast and it's time for an update on running Node.js in Docker. Let's dive right in. Here's a Dockerfile that pulls the lightweight Oracle Linux "slim" image, installs the latest...
This is a GraphQL demo that stores data in an Oracle Database SODA collection. GraphQL is a query language for services. Oracle Database SODA is a NoSQL-like...
This is a GraphQL demo that stores data in an Oracle Database SODA collection. GraphQL is a query language for services. Oracle Database SODA is a NoSQL-like API for storing documents in Oracle Database. The demo follows on from my previous "Demo: GraphQL with Oracle Database and node-oracledb" which shows the same demonstration using relational tables and SQL queries. Read that post to learn about GraphQL and GraphQL queries. Also see the associated SODA presentation Getting...
This is a GraphQL demo that stores data in an Oracle Database SODA collection. GraphQL is a query language for services. Oracle Database SODA is a NoSQL-like API for storing documents in...
Release announcement: The latest version of node-oracledb, the Node.js module for accessing Oracle Database, is on npm. Top features: Connection tagging;...
Release announcement: The latest version of node-oracledb, the Node.js module for accessing Oracle Database, is on npm. Top features: Connection tagging; New-connection callback; Explicit session drop; Multi-binary install; Deferred Oracle Client library initialization. This release of node-oracledb has features to make installation and configuration easier, and for working with pooled connections more efficiently. The highlights are below, but check the CHANGELOG for all...
Release announcement: The latest version of node-oracledb, the Node.js module for accessing Oracle Database, is on npm. Top features: Connection tagging; New-connection callback; Explicit session...
We recently reviewed 'external authentication' and 'proxy connections' support in node-oracledb and did a few tweaks that will appear in the future...
We recently reviewed 'external authentication' and 'proxy connections' support in node-oracledb and did a few tweaks that will appear in the future node-oracledb 3.1. You can use 'external authentication' to connect without requiring a password being stored in your Node.js applications. This is useful, for example, to authenticate via LDAP or use an Oracle Wallet. The idea of a proxy connection is to create a schema in one database user name. Privilege is granted on that...
We recently reviewed 'external authentication' and 'proxy connections' support in node-oracledb and did a few tweaks that will appear in the future node-oracledb 3.1. You can use...