1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/* Copyright (c) 2003-2005 MySQL AB
Use is subject to license terms
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
/****** THIS LINE IS 80 CHARACTERS WIDE - DO *NOT* EXCEED 80 CHARACTERS! ****/
#include <ndb_global.h>
#include <NdbOut.hpp>
//#include <cfg/cfg_db.h>
//#include <init/init_start_restart.h>
//#include "pcn_types.h"
//#include <testing/testing.h>
extern "C" {
#include <cfg_db.h>
}
typedef struct Employee {
UInt32_t EmpNo;
char FirstName[22];
char LastName[22];
} Employee_t;
#define CHECK_DB_CALL( Call ) \
CheckDbCall( Call, #Call, __FILE__, __LINE__ )
/* --- Exported functions --- */
/*---------------------------------------------------------------------------*/
int main() {
char EMP_TABLE_NAME[] = "employees";
Employee_t t;
CFG_DbColumnDesc_t EmpColDesc[] = {
{ "first_name", CFG_DB_CHAR, PCN_SIZE_OF( Employee, FirstName ),
PCN_FALSE },
{ "emp_no", CFG_DB_INT, PCN_SIZE_OF( Employee, EmpNo ), PCN_TRUE },
{ "last_name", CFG_DB_CHAR, PCN_SIZE_OF( Employee, LastName ),
PCN_FALSE },
};
int EmpNbCol = 3;
CFG_DbColumnBinding_t ColBindings[] = {
CFG_DB_BINDING( "last_name", CFG_DB_CHAR, Employee, LastName ),
CFG_DB_BINDING( "emp_no", CFG_DB_INT, Employee, EmpNo ),
CFG_DB_BINDING( "first_name", CFG_DB_CHAR, Employee, FirstName)
};
Employee_t EMP_TABLE_DATA[] = {
{ 1242, "Joe", "Dalton" },
{ 123, "Lucky", "Luke" },
{ 456, "Averell", "Dalton" },
{ 8976, "Gaston", "Lagaffe" }
};
char* DbName;
DbName = NULL;
// On Linux: will destroy the table to start from a clean slate.
CFG_DbDestroy();
CFG_DbOpen( &DbName ) ;
CFG_DbCreateTable( EMP_TABLE_NAME,
EmpNbCol, EmpColDesc );
CFG_DbTableExists( EMP_TABLE_NAME );
//#ifndef CELLO_PLATFORM
//CHECK_DB_CALL( CFG_DbDumpSchema( stdout ) );
//#endif
CFG_DbClose();
// INIT_StopSystem();
}
|