Source: /app/hbasic/hbasic/hbdata/hb_db_column.h
|
|
|
|
#ifndef HBDBCOLUMN_H
#define HBDBCOLUMN_H
#include
#include "hbobject.h"
class HBDbColumn : public QObject, public HBObject
{
public:
HBDbColumn( char *name );
/* Column name in object name */
QString *old_name; // old column name if changed
// required for alter statement.
QString *col_type;
// short type; // type of the column
short length; // length of char values
short primary_key; // true if is primary key
short allow_null; // True if NULL values allowed
QString *val_default; // Default value or NULL pointer
short flags; // see defines.h DBCFLAG*
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |