Skip to content

Data Model Quoted Columns

💡 TL;DR - use --quote for quoted column names

If your database was created with quoted column names, you must specify use the --quote option on ApiLogicServer create.

Quoted Column Names

You need to use the --quote option for databases declared like this:

create table "STRESS_IDENTITY_BY_DEFAULT" (  "id" int generated by default as identity (increment by 1 start with 1 nocache) ,"some_text" varchar(40));

 

ApiLogicServer create --quote

In such cases, include the --quote option:

ApiLogicServer create --project_name=oracle_stress --quote --db_url='oracle+oracledb://stress:tiger@localhost:1521/?service_name=ORCL'