执行下面的程序:int main(){ exec sql whenever sqlerror goto handle_error;exec sql create table customers(cid char(4) not null, cname varchar(13), …);…handle_error:exec sql drop customers;exec sql disconnect;fprintf(stderr,”could not create customers table\n”);return -1;}如果customers表在执行过程中出现了问题,没有人为干预,则该程序“Exec sql drop customers;”语句将被执行的次数为_________。
A、0次;
B、1次;
C、2次
D、不确定的有限次数;
E、无限次数。
A、0次;
B、1次;
C、2次
D、不确定的有限次数;
E、无限次数。