The text is not in the Database, only the other Parameters.
text := TMemoryStream.create;
text is passed as parameter and is filled!
PKG_KOMMENTAR_P_ADD_COMMENT.Active := false;
PKG_KOMMENTAR_P_ADD_COMMENT.ParamByName('p_type').AsString := p_type;
PKG_KOMMENTAR_P_ADD_COMMENT.ParamByName('p_private_id').AsString := p_private_id;
PKG_KOMMENTAR_P_ADD_COMMENT.ParamByName('p_user_id').AsString := p_user_id;
PKG_KOMMENTAR_P_ADD_COMMENT.ParamByName('p_sessionid').AsString := p_sessionid;
text.Position := 0;
PKG_KOMMENTAR_P_EDIT_COMMENT.ParamByName('p_text').AsOraBlob.LoadFromStream(text);
showmessage(inttostr(PKG_KOMMENTAR_P_EDIT_COMMENT.ParamByName('p_text').AsOraBlob.size));
//Size equals text.size!!
PKG_KOMMENTAR_P_ADD_COMMENT.Execute;
After execute no text!
Is it not possible to store Blobs in one step,
do i have to select it and to store it with createBlobStream(..,bmWrite)?
greetings!