Board index » delphi » BDE support of the Text data type in SQL Server 2000

BDE support of the Text data type in SQL Server 2000

Hi,

    I am using BDE (Delphi 6 Pro) to connect to an SQL Server 2000. With
text fields I have the following problem. They are inserted correctly in the
database, but when using a Select statement to retrieve them I only get the
first 32Kbytes of data even though the @@TEXTSIZE variable of SQL Server is
set to 2GB. Any ideas???

Thanks,
Apostolos

 

Re:BDE support of the Text data type in SQL Server 2000


Set the BlobSize parameter of the driver to something larger than 32k
using BDE Administrator.

On Sun, 1 Dec 2002 21:26:18 +0200, "Apostolos Dimopoulos"

Quote
<adi...@dreamtech.gr> wrote:
>Hi,

>    I am using BDE (Delphi 6 Pro) to connect to an SQL Server 2000. With
>text fields I have the following problem. They are inserted correctly in the
>database, but when using a Select statement to retrieve them I only get the
>first 32Kbytes of data even though the @@TEXTSIZE variable of SQL Server is
>set to 2GB. Any ideas???

>Thanks,
>Apostolos

--
Bill (TeamB)
(TeamB cannot respond to questions received via email)

Re:BDE support of the Text data type in SQL Server 2000


Thanks!!

Quote
"Bill Todd" <b...@notthis.dbginc.com> wrote in message

news:8krkuukuleo14vtpme7s47h2lsphcs6rck@4ax.com...
Quote
> Set the BlobSize parameter of the driver to something larger than 32k
> using BDE Administrator.

> On Sun, 1 Dec 2002 21:26:18 +0200, "Apostolos Dimopoulos"
> <adi...@dreamtech.gr> wrote:

> >Hi,

> >    I am using BDE (Delphi 6 Pro) to connect to an SQL Server 2000. With
> >text fields I have the following problem. They are inserted correctly in
the
> >database, but when using a Select statement to retrieve them I only get
the
> >first 32Kbytes of data even though the @@TEXTSIZE variable of SQL Server
is
> >set to 2GB. Any ideas???

> >Thanks,
> >Apostolos

> --
> Bill (TeamB)
> (TeamB cannot respond to questions received via email)

Other Threads