hello_worldODBC.sdl

Schema for the odbc01Example_main.c example. Compile this schema using rdm-compile as follows:

rdm-compile --catalog hello_worldODBC.sdl

and include the generated header file(s) as follows:

#include "hello_worldODBC_cat.h"

and compile the following generated source file(s):

hello_worldODBC_cat.c

Here follows the actual schema:

--
-- Use following command to compile:
-- rsql -x hello_world.sql
--
-- Please refer to the Database Design section in the User Manual for details of RDM Database schema.
create table info
(
myChar char(31)
);