Product Documentation

c-treeDB API for C++ - Developers Guide

Previous Topic

Next Topic

Creating Tables with Unicode Field types

Creating tables with Unicode field types is done by adding or inserting a new field with a field type set to one of the following Unicode field types: CT_FSTRING, CT_F2STRING, CT_STRING or CT_2STRING.

Previous Topic

Next Topic

c-treeDB C++ API Example

hTable.AddField("f1", CT_FUNICODE, 40);

hTable.AddField("f2", CT_INT4, 4);

hTable.Create("table", CTCREATE_NORMAL);

TOCIndex