When using group_concat in mysql, you may be embarrassed by truncated query results. Then, you should check the mysql variable, 'group_concat_max_len', it's default value is 1024. show variables like "group_concat_max_len"; The command, set group_concat_max_len = xxxx doesn't effect in my case. So I changed the config file in /etc/my.cnf, [mysqld] group_concat_max_len = xxxx In addition, you should check ' max_allowed_packet' variable.
1. use ScrollView, simple 2. use TouchableWithoutFeedback and set outer view be fit to the full window to able TouchablewithoutFeedback. for more information: http://stackoverflow.com/questions/29685421/react-native-hide-keyboard
0. mysql -u root mysql -p 1. create database xxxx DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 2. create user '****'@'localhost' identified by '****'; create user '****'@'%' identified by '****'; 3. grant all privileges on xxxx.* to ****@'%' grant all privileges on xxxx.* to ****@'localhost';