I am using RBD v.8, I connect to Oracle database. If I try to retrieve a key of a last inserted row as follows:    
          execute #sql{ insert into (...) values (...) returning id into :var1};    
          I get     
                  EGL0504E EXECUTE: Missing IN or OUT parameter at index:: 29[sqlstate:99999][sqlcode:17041]       
              EGL0002I The error occurred in RehUrejanjePogodbeLib processing the insertVRehZavarovanecInVRehPogodbaInVRehAneksUpor function.       
                     
                If I try as follows I get    
          execute #sql{ insert into (...) values (...) returning id into var1    
          I get    
          EGL0504E EXECUTE: ORA-00905: missing keyword [sqlstate:42000][sqlcode:905]     
          EGL0002I The error occurred in RehUrejanjePogodbeLib processing the insertVRehZavarovanecInVRehPogodbaInVRehAneksUpor function.     
               
          What is recommended? Thanks    
               
  azra77