e kad je u pitanju zivot ili smrt, onda potrazi na google FreeUDF
uz pomoc User Defined Functions sigurno moze, samo je pitanje
dali ces naci gotovu funkciju ili ces morati da sam napises jednu.
ali kad sam vec poceo ... pa evo ti UDF, samo pastiraj to u Delphi, i iskompajliraj .dll
Code:
library concat_udf;
function concat_str(str1,str2:Pchar): Pchar; stdcall;
begin
concat_str:=pchar(string(str1)+string(str2));
end;
exports
concat_str;
begin
end.
i evo ti sql za import UDF-a, samo pre toga trebas iskopirati dll u <ib_install_dir>\udf
Code:
declare external function f_concat_str
CString(15),
CString(15),
returns
CString(15) by value
entry_point 'concat_str'
module_name 'concat_udf.dll';
People who think they know everything tend to irritate those of us who do.