what is the maximun lenght string that can be passed to stored procedure using delphi 6 and sql server 7 why i asked is because i am trying to pass as string like this:
ParamByName('@lastsale').AsString := lastsale
lastsale is declared as a string in delphi and varchar(500) in sql server. in delphi it cotains data of lenght 234 and when passed to sql server the string cut off to about 160 which does not make sense which is it being cut off? any one has any ideas about this??
ParamByName('@lastsale').AsString := lastsale
lastsale is declared as a string in delphi and varchar(500) in sql server. in delphi it cotains data of lenght 234 and when passed to sql server the string cut off to about 160 which does not make sense which is it being cut off? any one has any ideas about this??