no message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Unknown (UG)
1999-01-08 11:54:12 +00:00
parent b39c6b72d3
commit 9f8de18fb6
2 changed files with 5 additions and 5 deletions

View File

@@ -224,7 +224,7 @@ typedef struct
short MaximumScale; short MaximumScale;
} SqlTypeInfo; } SqlTypeInfo;
class CcolInf class WXDLLEXPORT CcolInf
{ {
public: public:
char tableName[DB_MAX_TABLE_NAME_LEN+1]; char tableName[DB_MAX_TABLE_NAME_LEN+1];
@@ -238,7 +238,7 @@ enum sqlLog
sqlLogON sqlLogON
}; };
class wxDB class WXDLLEXPORT wxDB
{ {
private: private:

View File

@@ -43,7 +43,7 @@ const int ROWID_LEN = 24; // 18 is the max, 24 is in case it gets larger
// source, exchange data between the data source and the C++ // source, exchange data between the data source and the C++
// object, and so on. // object, and so on.
class CcolDef class WXDLLEXPORT CcolDef
{ {
public: public:
char ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name glt 4/19/97 added one for the null terminator char ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name glt 4/19/97 added one for the null terminator
@@ -59,14 +59,14 @@ public:
}; // CcolDef }; // CcolDef
// This structure is used when creating secondary indexes. // This structure is used when creating secondary indexes.
class CidxDef class WXDLLEXPORT CidxDef
{ {
public: public:
char ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name glt 4/19/97 added one for the null terminator char ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name glt 4/19/97 added one for the null terminator
bool Ascending; bool Ascending;
}; // CidxDef }; // CidxDef
class wxTable class WXDLLEXPORT wxTable
{ {
private: private: