Which datatype are use in realm database(i.e. String,int etc.)? What is the size of that DataType?
(i.e. in mySQL varchar max length is 65,535.)
Which datatype are use in realm database(i.e. String,int etc.)? What is the size of that DataType?
(i.e. in mySQL varchar max length is 65,535.)
Realm supports boolean, byte, short, int, long, float, double, String, Date and byte[] field types.
Also specific types of RealmModel
, and RealmList<T>
where T is a supported field type of Realm.
Size limitation of String , byte[] is 16MB.