Re: Update transaction

From: <kskasi_at_hotmail.com>
Date: Tue, 04 Apr 2000 08:24:18 +0930
Message-ID: <38E9211A.1D355921_at_hotmail.com>


Hi there

Pass :new_book_price as a parameter to the procedure. SO your procedure should look something like this

create or replace Procedure Tran2 (publish IN book.publisher%type,
                                                        p_book_price IN book.price%type) is
 Type price_data_record is record
  (ISBN_NO book.ISBN%TYPE,
   book_name book.name%TYPE,
   author_name book.author%TYPE,
   book_price book.price%type,
   new_book_price book.price%type);
   price_record price_data_record;
 CURSOR c2 is
  Select ISBN, name, author, price
  from book
  where book.publisher = publish;
Begin
 Open c2;
 LOOP
  Fetch c2 into price_record;
  exit when C2%NOTFOUND;
  DBMS_output.Put_line('ISBN No '|| price_record.ISBN_NO);
  DBMS_output.Put_line('Name of Book '|| price_record.book_name);
  DBMS_output.Put_line('Author '|| price_record.author_name);
  DBMS_output.Put_line('Price Lm'|| price_record.book_price);
  DBMS_Output.Put_line('New Price'||p_book_price);
Hope this helps

Bye...kasi
Jonathan Bartolo wrote:

Can I update a field of a table from a procedure. I have this procedure
create Procedure Tran2 (publish IN book.publisher%type) is
 Type price_data_record is record
  (ISBN_NO book.ISBN%TYPE,
   book_name book.name%TYPE,
   author_name book.author%TYPE,
   book_price book.price%type,
   new_book_price book.price%type);
   price_record price_data_record;
 CURSOR c2 is
  Select ISBN, name, author, price
  from book
  where book.publisher = publish;
Begin
 Open c2;
 LOOP
  Fetch c2 into price_record;
  exit when C2%NOTFOUND;
  DBMS_output.Put_line('ISBN No '|| price_record.ISBN_NO);
  DBMS_output.Put_line('Name of Book '|| price_record.book_name);
  DBMS_output.Put_line('Author '|| price_record.author_name);
  DBMS_output.Put_line('Price Lm'|| price_record.book_price);
  DBMS_Output.Put_line('New Price'||:new_book_price);

This line is the problem ... I need to update this record with a new price. But the user has to input the new price.
When I try to compile this procedure it telling me that i have a bad Variable bind
Can you help me please

Regards
Jonathan

Received on Tue Apr 04 2000 - 00:54:18 CEST

Original text of this message