![]() |
1.2.6 Beta - Commit Log 01/14/2011 - Printable Version +- Community Support for OpenDocMan (Deprecated) (https://forum.opendocman.com) +-- Forum: OpenDocMan Announcements (https://forum.opendocman.com/forum-3.html) +-- Thread: 1.2.6 Beta - Commit Log 01/14/2011 (/thread-361.html) |
1.2.6 Beta - Commit Log 01/14/2011 - Stephen - 01-15-2011 New commit to the 1.2.6 beta trunk. More info here: http://www.opendocman.com/2011/01/15/1-2-6-beta-commit-log-01142011/ Re: 1.2.6 Beta - Commit Log 01/14/2011 - Dolittle - 02-08-2011 #0000323 â UDF values are limited to 16 chars Why is this only 16 chars? What will happen if I change it to 32 char? 16 chars is not always enough for my users. Will changing UDF values to 16 cause an error or is it a space issue? Thanks, Donald Kean Re: 1.2.6 Beta - Commit Log 01/14/2011 - Stephen - 02-09-2011 I believe this was added because the initial table creation for a new UDF field was using varchar(16) and so I added some input validation to keep errors from happening when names were too long. also, the "name" of a UDF is turned into a new mysql table and has a prefix added to it (udftbl_) to ensure that other existing tables don't get overwritten. So this limits the name size. I just checked the limits on table names and it looks like they can be up to 64 characters in length (minus the udf prefix of "udftbl_"). I will put this in as a feature request in our bug tracker. Thanks. Re: 1.2.6 Beta - Commit Log 01/14/2011 - Stephen - 02-09-2011 I just checked and it looks like I have a feature request from November to increase the UDF name to 64 characters. |