Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

sre_zzzzsys_php_id column length Topic is solved

Questions related to using nuBuilder Forte.
Post Reply
chpwebmaster
Posts: 72
Joined: Mon Jun 10, 2019 5:00 pm
Has thanked: 6 times
Been thanked: 4 times

sre_zzzzsys_php_id column length

Unread post by chpwebmaster »

Just a heads up I tried to create a fast report from a table with a little bit longer name "Current_Days_Recurring_Billing". The sre_zzzzsys_php_id column in the zzzzsys_report table is varchar(25) and will not fit TABLE:Current_Days_Recurring_Billing but it states that it created the fast report in the standard big yellow box. The report is of course nowhere to be found. Looking at the Debug log error it shows the column was too long and the insert query failed. I managed to get around it by renaming my table to "CurDaysRecBilling".
kev1n
nuBuilder Team
Posts: 4297
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: sre_zzzzsys_php_id column length

Unread post by kev1n »

Hi,

Thank you for pointing this out. You may want to change the column length to varchar(200).

Code: Select all

ALTER TABLE `zzzzsys_report` CHANGE `sre_zzzzsys_php_id` `sre_zzzzsys_php_id` VARCHAR(200) NULL DEFAULT NULL;
(This will also be changed in a future Github commit)
kev1n
nuBuilder Team
Posts: 4297
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: sre_zzzzsys_php_id column length

Unread post by kev1n »

I hope that helps.
chpwebmaster
Posts: 72
Joined: Mon Jun 10, 2019 5:00 pm
Has thanked: 6 times
Been thanked: 4 times

Re: sre_zzzzsys_php_id column length

Unread post by chpwebmaster »

Sorry I thought I had marked that as solved previously
Post Reply