From: steve f. <sfi...@pc...> - 2003-02-25 14:20:59
|
paul- i'll only address the second question. i believe you have stumbled here on a known weakness in the Plugin API. (i am in the process of improving the api, and will put this on the list). the 'integer' of integer_value i suspect is coming from your plugin's easyCspOptions declared in its initialize method. one or more of your arg declarations is specifying its type as 'integer' while the allowed value is actually 'int'. i will add to the plugin manager a check of all such types to ensure that they are within the controlled vocab for allowed types. my $easycsp = [{ h => 'if true then update the row with new modification data and algorithmInvocation regardless if has changed from the database', t => 'int', MUST BE 'int' NOT 'integer' (obvious, no?) o => 'refresh', }, steve pjm wrote: >Morning, > >I did a; > alter table AlgorithmParamKey MODIFY description VARCHAR2(512); > >on our DB to get the original command line description in. Unless otherwise told >I will alter the number in the original table creation script and cvs commit it. > >Also, the GusApplication code wants to lookup 'algoinvo' which it knows should >be type integer. >Looking for this value in AlgorithmParam I get the following error; > > >ERROR: attempting to access attribute 'integer_value' of table AlgorithmParam, >but that table does not have such an attribute > > >The field name is int_value. Which should I change? > >Paul. > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Gusdev-gusdev mailing list >Gus...@li... >https://lists.sourceforge.net/lists/listinfo/gusdev-gusdev > > > > |