Page 2 of 2

Re: mysterious banner

Posted: Tue Jul 22, 2025 6:22 am
by kev1n
In MySQL 5.7 and MySQL 5.6, queries against INFORMATION_SCHEMA.TABLES returned column names in lowercase such as table_name, table_schema.

With the transition to MySQL 8.0, the implementation of INFORMATION_SCHEMA was re-engineered to use views over the transactional data dictionary, leading to column names being returned in uppercase (e.g. TABLE_NAME, TABLE_SCHEMA)

:arrow: Replace all occurrences of table_name with TABLE_NAME (I counted 7) in nucommon.php and check if the saving error is gone.

Some other issues might come up with your versions (PHP deprecations etc). I highly recommend updating nuBuilder to a newer version if possible.

Re: mysterious banner

Posted: Tue Jul 22, 2025 10:16 am
by Henk_2a
Perfect!! thanks
I indeed need to update, but I didn't dare to update with errors in the system. Now it looks everything is ok, so now I will update. Thanks for your help

Re: mysterious banner

Posted: Wed Jul 23, 2025 10:22 am
by Henk_2a
4.5 installed and working
Is it necessary to install all version sequently, or can i just install the latest.

Re: mysterious banner

Posted: Wed Jul 23, 2025 10:23 am
by kev1n
You can install the latest directly.