1:  proc中用于为SQL描述区域(SQLDA)分配空间的命令是什么?
     ESQL中的用法是:EXEC SQL allocate descriptor 'insertdesc' with max: desccount
    with max:后面接的变量表示区域的大小,如果不要这个参数的话表示默认分配一个. 
    如果将这条语句放在proc中的话会报一个错,但改成:EXEC SQL allocate descriptor 'insertdesc'
    正确。
    错误提示信息如下:
    PCC-S-02201, Encomtered the symbol ":" when expecting one of the following:
     qn idenfifier
   the  symbol ........... 2:ESQL中的语句:EXEC SQL free 对象名。
    在proc中与之对应的 命令是是。
    在proc中    free 关键字不被识别。
 如上两个问题请各位大虾指导。