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

Public Member Functions

int getId ()
void setId (int id)
byte[] getBinary1 ()
void setBinary1 (byte[] value)
byte[] getBinary2 ()
void setBinary2 (byte[] value)
byte[] getBinary4 ()
void setBinary4 (byte[] value)
byte[] getBinary8 ()
void setBinary8 (byte[] value)
byte[] getBinary16 ()
void setBinary16 (byte[] value)
byte[] getBinary32 ()
void setBinary32 (byte[] value)
byte[] getBinary64 ()
void setBinary64 (byte[] value)
byte[] getBinary128 ()
void setBinary128 (byte[] value)

Detailed Description

Schema

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

binary1 binary(1), binary2 binary(2), binary4 binary(4), binary8 binary(8), binary16 binary(16), binary32 binary(32), binary64 binary(64), binary128 binary(128)

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

Definition at line 48 of file BinaryTypes.java.


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