You mean something like this:
blob_sqlca = create transaction |
ls_user= sqlca.logid | |||
ls_psw= sqlca.logpass | |||
ls_domain=sqlca.domain_id | |||
blob_sqlca.DBMS= SQLCA.DBMS | |||
blob_sqlca.Database= SQLCA.Database | |||
blob_sqlca.ServerName =SQLCA.ServerName | |||
blob_sqlca.LogId= ls_user | |||
blob_sqlca.LogPass= ls_psw | |||
blob_sqlca.UserId= ls_user | |||
blob_sqlca.DBPass= ls_psw | |||
blob_sqlca.Lock= SQLCA.Lock | |||
blob_sqlca.DBParm =SQLCA.DBParm | |||
blob_sqlca.Autocommit = TRUE
Then connecting with the new trans object. |