| View previous topic :: View next topic |
| Author |
Message |
sener Guest
|
Posted: Wed Jul 16, 2003 7:50 am Post subject: Passing Blob field from AppSrvr to Client by OleVariant |
|
|
How can I pass the Blob field (BlobField.AsString) to
client by using CDS.DataRequest and Provider's OnDataRequest on
AppSrvr.
Clent
var Data: OleVariant;
Data := CDS.Request(..);
// the length of result string is wrong
// Cutted at first #0
AppSrvr
ProviderOnDataRequest(..): OleVariant;
// read somthing from SQLDataSet having BLOB field
Result := SQLdsBLOB_FIELD.AsString;
// Length is OK
thanks
Sener
|
|
| Back to top |
|
 |
vavan Guest
|
Posted: Wed Jul 16, 2003 8:05 am Post subject: Re: Passing Blob field from AppSrvr to Client by OleVariant |
|
|
On 16 Jul 2003 00:50:27 -0700, "sener" <sdemiral (AT) netscape (DOT) net> wrote:
| Quote: | How can I pass the Blob field (BlobField.AsString) to
client by using CDS.DataRequest and Provider's OnDataRequest on
AppSrvr.
|
what about passing BlobField.AsVariant?
--
Vladimir Ulchenko aka vavan
|
|
| Back to top |
|
 |
sener Guest
|
Posted: Wed Jul 16, 2003 8:14 am Post subject: Re: Passing Blob field from AppSrvr to Client by OleVariant |
|
|
it is also not working..
vavan <vavan (AT) santel (DOT) ru> wrote:
| Quote: | On 16 Jul 2003 00:50:27 -0700, "sener" <sdemiral (AT) netscape (DOT) net> wrote:
How can I pass the Blob field (BlobField.AsString) to
client by using CDS.DataRequest and Provider's OnDataRequest on
AppSrvr.
what about passing BlobField.AsVariant?
--
Vladimir Ulchenko aka vavan
|
|
|
| Back to top |
|
 |
|