Creating and Modifying Database Objects

To create and modify in-memory database objects, an application uses APIs specific to the application development language. Whereas C and C++ applications use strongly typed APIs generated from the schema definition, Java, C# and Python applications use the language instantiation operator (eg. new in Java and C#) to create database objects, and standard assignment operators to modify field values.

Please use the links below to view detailed explanations and examples for your development environment:

C Creating and Modifying Database Objects in C
C++ Creating and Modifying Database Objects in C++
Java Creating and Modifying Database Objects in Java
Python Creating and Modifying Database Objects in Python
C# Creating and Modifying Database Objects in C#