MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
com.mysql.clusterj.jpatest.model.Embedded Class Reference
Inheritance diagram for com.mysql.clusterj.jpatest.model.Embedded:
Collaboration diagram for com.mysql.clusterj.jpatest.model.Embedded:

Public Member Functions

int getAge ()
void setAge (int age)
String getName ()
void setName (String name)
String toString ()

Detailed Description

An Entity test class that can be embedded in another.

drop table if exists t_basic; create table t_basic ( id int not null, name varchar(32), // embedded age int, // embedded magic int not null, primary key(id)) engine=ndbcluster; create unique index idx_unique_hash_magic using hash on t_basic(magic); create index idx_btree_age on t_basic(age);

Definition at line 43 of file Embedded.java.


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