From bfa452a375ea0a0a3f95304a69186936567e5263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 14 Aug 2023 19:45:36 +0200 Subject: New upstream version 4.1.4 --- docs/doxygen/html/structxb_1_1xbSchema.html | 179 ---------------------------- 1 file changed, 179 deletions(-) delete mode 100644 docs/doxygen/html/structxb_1_1xbSchema.html (limited to 'docs/doxygen/html/structxb_1_1xbSchema.html') diff --git a/docs/doxygen/html/structxb_1_1xbSchema.html b/docs/doxygen/html/structxb_1_1xbSchema.html deleted file mode 100644 index 4d314dd..0000000 --- a/docs/doxygen/html/structxb_1_1xbSchema.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - -Xbase64: xb::xbSchema Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Xbase64 4.0.1 -
-
C++ Library for handling Xbase (DBF) format type files
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
- -
xb::xbSchema Struct Reference
-
-
- -

Schema used for defining tables with CreateTable methods. - More...

- -

#include <xbdbf.h>

- - - - - - - - - - -

-Data Fields

char cFieldName [11]
 
char cType
 
xbInt16 iFieldLen
 
xbInt16 iNoOfDecs
 
-

Detailed Description

-

Schema used for defining tables with CreateTable methods.

-

See program xb_ex_v3_create_dbf.cpp or xb_ex_v4_create_dbf.cpp as examples on how to use.

-
xbSchema MyRecord[] = {
-
// FieldName, Type, Len, Dec
-
{ "FIRSTNAME", XB_CHAR_FLD, 15, 0 },
-
{ "LASTNAME", XB_CHAR_FLD, 20, 0 },
-
{ "BIRTHDATE", XB_DATE_FLD, 8, 0 },
-
{ "AMOUNT", XB_NUMERIC_FLD, 9, 2 },
-
{ "RETIRED?", XB_LOGICAL_FLD, 1, 0 },
-
{ "ZIPCODE", XB_NUMERIC_FLD, 5, 0 },
-
{ "NUMFLD1", XB_FLOAT_FLD, 12, 2 },
-
{ "NUMFLD2", XB_FLOAT_FLD, 14, 2 },
-
{ "MEMO1", XB_MEMO_FLD, 10, 0 },
-
{ "",0,0,0 }};
-
#define XB_CHAR_FLD
Definition: xbdbf.h:29
-
#define XB_MEMO_FLD
Definition: xbdbf.h:33
-
#define XB_LOGICAL_FLD
Definition: xbdbf.h:30
-
#define XB_DATE_FLD
Definition: xbdbf.h:32
-
#define XB_FLOAT_FLD
Definition: xbdbf.h:34
-
#define XB_NUMERIC_FLD
Definition: xbdbf.h:31
-

Field Documentation

- -

◆ cFieldName

- -
-
- - - - -
char xb::xbSchema::cFieldName[11]
-
- -
-
- -

◆ cType

- -
-
- - - - -
char xb::xbSchema::cType
-
- -
-
- -

◆ iFieldLen

- -
-
- - - - -
xbInt16 xb::xbSchema::iFieldLen
-
- -
-
- -

◆ iNoOfDecs

- -
-
- - - - -
xbInt16 xb::xbSchema::iNoOfDecs
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - -- cgit v1.2.3 From c894a7cdd8686ea695602a23a511a3f1b0d047be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 14 Aug 2023 21:07:46 +0200 Subject: New upstream version 4.1.4 --- docs/doxygen/html/structxb_1_1xbSchema.html | 179 ++++++++++++++++++++++++++++ 1 file changed, 179 insertions(+) create mode 100644 docs/doxygen/html/structxb_1_1xbSchema.html (limited to 'docs/doxygen/html/structxb_1_1xbSchema.html') diff --git a/docs/doxygen/html/structxb_1_1xbSchema.html b/docs/doxygen/html/structxb_1_1xbSchema.html new file mode 100644 index 0000000..4b745d8 --- /dev/null +++ b/docs/doxygen/html/structxb_1_1xbSchema.html @@ -0,0 +1,179 @@ + + + + + + + +Xbase64: xb::xbSchema Struct Reference + + + + + + + + + +
+
+ + + + + + +
+
Xbase64 4.0.1 +
+
C++ Library for handling Xbase (DBF) format type files
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
xb::xbSchema Struct Reference
+
+
+ +

Schema used for defining tables with CreateTable methods. + More...

+ +

#include <xbdbf.h>

+ + + + + + + + + + +

+Data Fields

char cFieldName [11]
 
char cType
 
xbInt16 iFieldLen
 
xbInt16 iNoOfDecs
 
+

Detailed Description

+

Schema used for defining tables with CreateTable methods.

+

See program xb_ex_v3_create_dbf.cpp or xb_ex_v4_create_dbf.cpp as examples on how to use.

+
xbSchema MyRecord[] = {
+
// FieldName, Type, Len, Dec
+
{ "FIRSTNAME", XB_CHAR_FLD, 15, 0 },
+
{ "LASTNAME", XB_CHAR_FLD, 20, 0 },
+
{ "BIRTHDATE", XB_DATE_FLD, 8, 0 },
+
{ "AMOUNT", XB_NUMERIC_FLD, 9, 2 },
+
{ "RETIRED?", XB_LOGICAL_FLD, 1, 0 },
+
{ "ZIPCODE", XB_NUMERIC_FLD, 5, 0 },
+
{ "NUMFLD1", XB_FLOAT_FLD, 12, 2 },
+
{ "NUMFLD2", XB_FLOAT_FLD, 14, 2 },
+
{ "MEMO1", XB_MEMO_FLD, 10, 0 },
+
{ "",0,0,0 }};
+
#define XB_CHAR_FLD
Definition: xbdbf.h:29
+
#define XB_MEMO_FLD
Definition: xbdbf.h:33
+
#define XB_LOGICAL_FLD
Definition: xbdbf.h:30
+
#define XB_DATE_FLD
Definition: xbdbf.h:32
+
#define XB_FLOAT_FLD
Definition: xbdbf.h:34
+
#define XB_NUMERIC_FLD
Definition: xbdbf.h:31
+

Field Documentation

+ +

◆ cFieldName

+ +
+
+ + + + +
char xb::xbSchema::cFieldName[11]
+
+ +
+
+ +

◆ cType

+ +
+
+ + + + +
char xb::xbSchema::cType
+
+ +
+
+ +

◆ iFieldLen

+ +
+
+ + + + +
xbInt16 xb::xbSchema::iFieldLen
+
+ +
+
+ +

◆ iNoOfDecs

+ +
+
+ + + + +
xbInt16 xb::xbSchema::iNoOfDecs
+
+ +
+
+
The documentation for this struct was generated from the following file:
    +
  • /mnt/1Tdata/xbase/xbase64-4.1.4/src/include/xbdbf.h
  • +
+
+ + + + -- cgit v1.2.3