OceanBase logo

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

Product Overview
DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Resources

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS

OceanBase Cloud

OceanBase Database

Tools

Connectors and Middleware

QUICK START

OceanBase Cloud

OceanBase Database

BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Company

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

International - English
中国站 - 简体中文
日本 - 日本語
Sign In
Start on Cloud

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

Product Overview
DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS
OceanBase CloudOceanBase Database
ToolsConnectors and Middleware
QUICK START
OceanBase CloudOceanBase Database
BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

Start on Cloud
编组
All Products
    • Databases
    • iconOceanBase Database
    • iconOceanBase Cloud
    • iconOceanBase Tugraph
    • iconInteractive Tutorials
    • iconOceanBase Best Practices
    • Tools
    • iconOceanBase Cloud Platform
    • iconOceanBase Migration Service
    • iconOceanBase Developer Center
    • iconOceanBase Migration Assessment
    • iconOceanBase Admin Tool
    • iconOceanBase Loader and Dumper
    • iconOceanBase Deployer
    • iconKubernetes operator for OceanBase
    • iconOceanBase Diagnostic Tool
    • iconOceanBase Binlog Service
    • Connectors and Middleware
    • iconOceanBase Database Proxy
    • iconEmbedded SQL in C for OceanBase
    • iconOceanBase Call Interface
    • iconOceanBase Connector/C
    • iconOceanBase Connector/J
    • iconOceanBase Connector/ODBC
    • iconOceanBase Connector/NET
icon

Embedded SQL in C for OceanBase

V1.1.7Enterprise Edition

  • What's New
  • What is ECOB?
  • ECOB compatibility with Pro*C
  • Install ECOB
  • Data types and variables
    • Overview
    • Supported data types
    • Data type conversion
    • Indicator variable
    • VARCHAR variable
    • Structure
    • String pointer
  • Embedded SQL statements
    • Overview
    • Variable declaration
    • Connect to OceanBase databases
    • Basic SQL statements
    • Prepared statements
    • Stored procedures
    • Cursor
    • Simple dynamic SQL statement
    • ANSI dynamic SQL statements
    • Error handling
      • SQLCA structure
      • WHENEVER statement
    • LOB-related SQL statements
  • Use ECOB
    • Environment preparation
    • Use ECOB
    • Compile the Tuxedo service
  • Command Line Options

Download PDF

What's New What is ECOB? ECOB compatibility with Pro*C Install ECOB Overview Supported data types Data type conversion Indicator variable VARCHAR variable Structure String pointer Overview Variable declaration Connect to OceanBase databases Basic SQL statements Prepared statements Stored procedures Cursor Simple dynamic SQL statement ANSI dynamic SQL statements SQLCA structure WHENEVER statement LOB-related SQL statements Environment preparation Use ECOB Compile the Tuxedo service Command Line Options
OceanBase logo

The Unified Distributed Database for the AI Era.

Follow Us
Products
OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
Resources
DocsBlogLive DemosTraining & Certification
Company
About OceanBaseTrust CenterLegalPartnerContact Us
Follow Us

© OceanBase 2026. All rights reserved

Cloud Service AgreementPrivacy PolicySecurity
Contact Us
Document Feedback
  1. Documentation Center
  2. Embedded SQL in C for OceanBase
  3. V1.1.7
iconEmbedded SQL in C for OceanBase
V 1.1.7Enterprise Edition

What is ECOB?

Last Updated:2023-06-29 11:12:55  Updated
share
What is on this page
Features
Architecture

folded

share

#docslug#/ecob/ecob/V1.1.6/ph52hu

OceanBase Embedded SQL in C (ECOB) is an OceanBase precompiler that provides features that are compatible with Oracle Pro*C.

Pro*C is an application development tool provided by the Oracle database ecosystem. When you develop an application in C language, ECOB allows you to embed SQL statements into the source code of the application. These embedded SQL statements can use variables in the C code of the application as input and output parameters. Then, the Oracle PROC precompiler preprocesses the source code for complete syntax analysis and translates the embedded SQL statements and commands into calls to the SQLLIB runtime library. After that, ECOB generates a source code file of the application in C language. After the file is compiled and linked by a C compiler, an executable program is generated. To provide support for Pro*C, OceanBase develops ECOB that contains the ecob precompiler and the ecoblib runtime library.

A PROC program comprises a great number of PC files and is built by using methods such as makefiles. To minimize your migration costs, the ecob precompiler provides command-line tool options and features that are the same as those of the PROC program.

Features

ECOB of the current version provides the following features:

  1. Supports SQL syntax that is compatible with the OceanBase Oracle mode.

  2. Supports basic embedded SQL statements, such as COMMIT, CONNECT, DELETE, EXECUTE, EXECUTE IMMEDIATE, INSERT, SELECT, UPDATE, WHENEVER, CALL, PREPARE, and ROLLBACK.

  3. Supports cursor-related statements, such as DECLARE, OPEN, CLOSE, and FETCH (including NEXT, ABSOLUTE, WITH HOLD, and CURRENT OF).

  4. Supports descriptors required by ANSI dynamic SQL and descriptor-related statements, such as ALLOCATE, DEALLOCATE, GET, SET, DESCRIBE, and FETCH.

  5. Allows you to use host variables without declaration in BEGIN DECLARE SECTION and END DECLARE SECTION.

  6. Recognizes and processes C preprocessor macros, including #ifdef, #ifndef, #else, #endif, and #define.

  7. The ecoblib library supports the runtime behavior of all the preceding statements. The ecoblib library provides options (such as CHAR_MAP) that are compatible with PROC programs and allows programs to run in the Tuxedo environment.

  8. An ecob program recognizes all options and compatible semantics of PROC programs and can be used as a replacement for PROC programs.

Architecture

ECOB comprises the ecob precompiler and the ecoblib library (libecob.so), a runtime dynamic link library. The following figure shows the architecture of ECOB.

Architecture of ECOB

Previous topic

What's New
Last

Next topic

ECOB compatibility with Pro*C
Next
What is on this page
Features
Architecture