Die Suche ergab 31 Treffer

von zappa2
Fr 5. Okt 2018, 11:10
Forum: Praxiseinsatz
Thema: Update von Text-Blob
Antworten: 2
Zugriffe: 7429

Update von Text-Blob

Ich möchte an ein als BLOB TEXT definiertes Feld eine Zeile anfügen. Die Proc wird fehlerfrei kompiliert. create or alter procedure ADD_PROTOCOL ( I varchar(255)) returns ( O integer) as declare variable S blob sub_type 1 segment size 80; begin select p from protocol where id=1 into :s; s=:s||:i; up...