Ok, Ive coded:
do OpenFiles
open(FactArtsView)
set(FactArtsView)
LOOP
next(FactArtsView)
if error() then p_web.AddLog(error()) ; break END
p_web.AddLog(Art:IZarticulo&' '&SBL:TimeStamp&' '&SBL:DATOBLOB{PROP:Size})
END
In the ws method proc, I had to use SBL:DATOBLOB{PROP:Size} for not having an error in addlog.
The result Log is in the attached pic.
I dont know why all SBL:DATOBLOB{PROP:Size} are the same: 304240.
If I query:
select len(datoblob),* from sys_blobs
in the MsSql QA I get a different length for each blob, see pic.
Ive done a Profiler and what the proc sends to the MsSql server is:
SELECT A.GUID, A.ts, A.sts, A.dts, A.ID, A.IZARTICULO, A.IZsubrubro, A.IZRUBRO, A.ESCALA1, A.ESCALA2, A.DESCRIPCION, A.COD_BARRAS, A.COMPUESTO_X, A.STOCK_ACT, A.ULT_PRECIO, A.ESTACION, A.COMPPPALDESC, A.UBICACION1, A.NIVELROTACION,
B.GUID, B.ts, B.sts, B.dts, B.DATOBLOB
FROM FactArts A LEFT OUTER JOIN SYS_BLOBS B ON B.GUID = A.GUIDBLOB
1rst thing I noted is that there are other fields than whats asked in the View... why? the FactArts table has more than 80 fields, why are these fields added to the query?
But the resultset is ok, theres the blob.
Any other thing to check?