> Is it possible to read a simple scalar paramter from Access DB via
> ODBC.
> 
> e.g.: param test := 100
> 
> The 100 should be read in via the table statement.

Scalar parameters are not allowed in the table statements. However, you
can define an array of scalar parameters, e.g.

   set N; /* parameter names */
   param p{N}; /* parameter values */

read S and p{S} from a table, and then use p["test"] in the model.


_______________________________________________
Help-glpk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-glpk

Reply via email to