X
xenophon
I have a column in a SQL Server 2000 table that is of type Text. That
is so I can put an unlimited-size string inside that column.
I am using the OleDb connector to put data in there, my pseudo code
looks ike this:
"@myparamname" , OleDbType.LongVarChar , 819200 ,
ParameterDirection.Input
But text seems to be truncated after about 1000 characters.
What is the OleDb type I should use when I want to insert say a 40k
piece of text?
Thanks.
is so I can put an unlimited-size string inside that column.
I am using the OleDb connector to put data in there, my pseudo code
looks ike this:
"@myparamname" , OleDbType.LongVarChar , 819200 ,
ParameterDirection.Input
But text seems to be truncated after about 1000 characters.
What is the OleDb type I should use when I want to insert say a 40k
piece of text?
Thanks.