Subject | Re: Text blob problems |
---|---|
Author | Sandor Szollosi |
Post date | 2003-08-07T06:48:26Z |
Thanks Helen!
I'll do this way.
But how long varchar should I use?
Aren't there problems if set varchar(4000) for example?
Sandor
I'll do this way.
But how long varchar should I use?
Aren't there problems if set varchar(4000) for example?
Sandor
> Your problem is that you defined the procedure SP_TBL1 with blobsas input
> arguments but, in the second procedure, you pass strings asarguments to
> it. A string isn't a blob.strings into
>
> With Firebird (but not IB) change SP_TBL1 to take varchars as
> arguments. The INSERT statement will work just fine inserting
> blobs because the DSQL parser will convert them for DML operations.
>
> heLen