Board index » delphi » 64K blob limit + BDE + ODBC + Oracle
Paulo
![]() Delphi Developer |
Mon, 27 Oct 2003 19:08:23 GMT
64K blob limit + BDE + ODBC + Oracle
Hi
I wonder if anyone can help me with the following problem: I have an Oracale database in which I need to save a blob whose size Any help is greatly appreciated. Environment: Code( writing to database ) Quote} ------------ with qryUpdateProcessTemplate do begin try ParamByName( 'GroupId').Value := pGroupId; ParamByName( 'ProcessId').Value := pProcessTemplate.DbId; ParamByName( 'ProcessType').Value := pProcessTemplate.ProcessType; ParamByName( 'ProcessName').Value := pProcessTemplate.Name; ParamByName( 'MachineName').Value := pProcessTemplate.MachineName; ParamByName( 'IconName').Value := pProcessTemplate.PictureName; ParamByName( 'Author').Value := pProcessTemplate.Author; ParamByName( 'CreationDate').Value := TDateTime( pProcessTemplate.Date ); ParamByName( 'Summary').Value := pProcessTemplate.Summary; ParamByName( 'Notes').Value := pProcessTemplate.Notes; ParamByName( 'Core' ).SetBlobData(lCoreStream.Memory, lCoreStream.Size); ParamByName( 'PosX' ).Value := pProcessTemplate.Posn.X; ParamByName( 'PosY' ).Value := pProcessTemplate.Posn.Y; ExecSQL; Result := DB_WRITE_SUCCESS; except |