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

OceanBase Connector/NET

V1.0.0

  • What Is OceanBase Connector/NET
    • Introduction
  • Install and Connect
    • Installation process
    • Test the connection
    • Reference a NuGet package
  • User Guide
    • Quick Start
      • Complete example
    • Connection Strings and Data Source
      • Connection strings
    • Data Types
      • Overview of data types
    • Command and Parameter
      • Overview
    • Result Set
      • Supported result set types
  • Reference Information
    • Common Interfaces
      • Overview of commonly used interfaces
  • Version Release Records
    • OceanBase Connector/NET V1.0.0

Download PDF

Introduction Installation process Test the connection Reference a NuGet package Complete example Connection strings Overview of data types Overview Supported result set types Overview of commonly used interfaces OceanBase Connector/NET V1.0.0
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. OceanBase Connector/NET
  3. V1.0.0
iconOceanBase Connector/NET
V 1.0.0
  • V 1.1.0
  • V 1.0.0

Installation process

Last Updated:2026-04-10 07:38:32  Updated
share
What is on this page
Environment preparation
Procedure
Step 1: Install the .NET runtime environment
Step 2: Create a console project
Step 3: Install OceanBase Connector/NET
Step 4: Write a connection sample code
Step 5: Run the connection verification
References

folded

share

This topic describes the complete process of using OceanBase Connector/NET, including environment preparation, project creation, driver installation, and connection verification.

Note

The examples in this topic are based on a Linux environment and an Oracle tenant. If you use Windows or MySQL mode, you can follow the same steps to complete the installation and connection.

Environment preparation

  • An accessible OceanBase Database instance.
  • Database account, password, host address, and port information.
  • .NET SDK installed (Linux/macOS command examples are provided).

Notice

Before installing .NET 10.0 on Linux, make sure that your system meets the glibc version requirements.

Procedure

Step 1: Install the .NET runtime environment

For Windows, you can download the installation package from the Microsoft official website. For Linux/macOS, run the following command:

Note

This topic uses .NET 10.0 as an example. In practice, you can choose other supported .NET versions based on project compatibility requirements. The installation steps are the same.

wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh --channel 10.0
echo 'export PATH="$HOME/.dotnet:$HOME/.dotnet/tools:$PATH"' >> ~/.bashrc
source ~/.bashrc

Verify the installation result:

dotnet --version

If the output is 10.0.0 or a higher version, the installation is successful.

Step 2: Create a console project

mkdir dotnet-test
cd dotnet-test
dotnet new console
dotnet run

If the console output is Hello, World!, the project is created successfully.

Step 3: Install OceanBase Connector/NET

After downloading the driver to your local machine, run the following command in the project directory to install the driver:

dotnet add <your project.csproj> package Oceanbase.ManagedDataAccess --version 1.0.0 --source "<package repository>" --source "https://api.nuget.org/v3/index.json"

Note

If you use the official NuGet package source, retain --source "https://api.nuget.org/v3/index.json".

You can also modify the nuget.config file, for example:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="local-oceanbase" value="driver download directory" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
  </packageSources>
</configuration>

After the installation is successful, you can see the following configuration in the .csproj file:

<ItemGroup>
  <PackageReference Include="Oceanbase.ManagedDataAccess" Version="1.0.0" />
</ItemGroup>

Step 4: Write a connection sample code

Modify the Program.cs file as follows:

using Oceanbase;

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            OracleConnection conn = new OracleConnection("Server=xxxxx;Port=5858;Database=test;User Id=test@oracle;Password=test;");

            try
            {
                conn.Open();
                OracleCommand cmd = new OracleCommand("select to_char(sysdate, 'yyyy-MM-dd HH24:mi:ss') from dual ", conn);
                var reader = cmd.ExecuteReader();
                while (reader.Read())
                {
                    Console.WriteLine("sysdate is:" + reader.GetString(0));
                }

            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {
                conn.Close();
            }
        }
    }
}

Step 5: Run the connection verification

dotnet run

If the current time is output, the connection and query are successful.

References

  • Package references and usage instructions
  • Connection test

Previous topic

Introduction
Last

Next topic

Test the connection
Next
What is on this page
Environment preparation
Procedure
Step 1: Install the .NET runtime environment
Step 2: Create a console project
Step 3: Install OceanBase Connector/NET
Step 4: Write a connection sample code
Step 5: Run the connection verification
References