cpp55.sdl
Schema for the cpp55Example_main.cpp example. Compile this schema using rdm-compile as follows:
rdm-compile --c-structs --lc-struct-members --catalog cpp55.sdl
and include the generated header file(s) as follows:
#include "cpp55_structs.h" #include "cpp55_cat.h"
and compile the following generated source file(s):
cpp55_cat.c
Here follows the actual schema:
CREATE TABLE readings
(
ts UINT64 primary key,
data BINARY(600) NOT NULL
);