MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
testsuite.clusterj.model.BitTypes Interface Reference
Inheritance diagram for testsuite.clusterj.model.BitTypes:
Collaboration diagram for testsuite.clusterj.model.BitTypes:

Public Member Functions

int getId ()
void setId (int id)
boolean getBit1 ()
void setBit1 (boolean value)
byte getBit2 ()
void setBit2 (byte value)
short getBit4 ()
void setBit4 (short value)
int getBit8 ()
void setBit8 (int value)
long getBit16 ()
void setBit16 (long value)
int getBit32 ()
void setBit32 (int value)
long getBit64 ()
void setBit64 (long value)

Detailed Description

Schema

drop table if exists bittypes; create table bittypes ( id int not null primary key,

bit1 bit(1), bit2 bit(2), bit4 bit(4), bit8 bit(8), bit16 bit(16), bit32 bit(32), bit64 bit(64)

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

Definition at line 43 of file BitTypes.java.


The documentation for this interface was generated from the following file: