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

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)
byte[] getBinary256 ()
void setBinary256 (byte[] value)
byte[] getBinary512 ()
void setBinary512 (byte[] value)
byte[] getBinary1024 ()
void setBinary1024 (byte[] value)
byte[] getBinary2048 ()
void setBinary2048 (byte[] value)

Detailed Description

Schema

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

binary1 varbinary(1), binary2 varbinary(2), binary4 varbinary(4), binary8 varbinary(8), binary16 varbinary(16), binary32 varbinary(32), binary64 varbinary(64), binary128 varbinary(128), binary256 varbinary(256), binary512 varbinary(512), binary1024 varbinary(1024), binary2048 varbinary(2048)

) ENGINE=ndbcluster DEFAULT CHARSET=latin1;

Definition at line 48 of file VarbinaryTypes.java.


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