MySQL 5.6.14 Source Code Document
|
Public Member Functions | |
int | getAge () |
void | setAge (int age) |
String | getName () |
void | setName (String name) |
String | toString () |
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.