بتاريخ: 20 يونيو 200718 سنة comment_102889 اريد عرض ال items الموجوده في الجدول على text box tabular لكن لا يعمل Run خطأ في الcompile component must be declared----------------------------------------------------------------------------------------------- Declarecursor c is select ITEMNAMEARA,ITEMNAMEENG,Price from item where catno=:cat.catno;v_ITEMNAMEARA item.ITEMNAMEARA%type;v_ITEMNAMEENG item.ITEMNAMEENG%type;v_Price item.Price%type;beginif :cat.catno is null then message('You must enter the department number');message('You must enter the department number');else open c; loop fetch c into v_ITEMNAMEARA,v_ITEMNAMEENG,v_Price; :item.ITEMNAMEARA:=v_ITEMNAMEARA; :item.ITEMNAMEENG:=v_ITEMNAMEENG; :item.Price:=v_Price; next_record; exit when c%notfound; end loop; end if; close c; exception when no_data_found then message('no data'); go_item(':cat.catno'); end; untitled.bmp تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.