Re: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-26 Thread Carlos Guzmán Álvarez
Hello: I'm trying to update a BLOB SUB_TYPE TEXT column but I get always the following error: arithmetic exception, numeric overflow, or string truncation I'm using .net 2.0 RC4 provider and FB 2.0 RC2. The value can be retrieved from table. The problem relies on how the parameter is defined,

RE: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-26 Thread Sergio Samayoa
Thanks for the response. The problem relies on how the parameter is defined, your parameter is defined only as DbType.String what isn't valid for Text Blob parameters as DbType.String is mapped by default to FbDbType.VarChar. In a case like this the FbPArameter.FbDbType should be set to

Re: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-26 Thread Carlos Guzmán Álvarez
Hello: This means that there only way to do this now is modifying the data source's generated source code, isn't? The little hack in the size property is on CVS now, could you give a try to it ( for v2.0 only ) -- Carlos Guzmán Álvarez Vigo-Spain http://carlosga.blogspot.com/ No hay un

RE: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-26 Thread Sergio Samayoa
The little hack in the size property is on CVS now, could you give a try to it ( for v2.0 only ) Which source file? I'm behind Websense and the only way I can surf is via http proxy (such kproxy), I can browse CVS, I see your comment but I found no change con FbParameter.cs. By the way, how

RE: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-26 Thread Sergio Samayoa
Enviado el: Viernes, 26 de Mayo de 2006 12:58 p.m. Para: firebird-net-provider@lists.sourceforge.net Asunto: RE: [Firebird-net-provider] Cant use BLOB: Provider limitation or what? Thanks for the response. The problem relies on how the parameter is defined, your parameter is defined only

Re: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-26 Thread Carlos Guzmán Álvarez
Hello: I'm behind Websense and the only way I can surf is via http proxy (such kproxy), I can browse CVS, I see your comment but I found no change con FbParameter.cs. Modify the FbParameter.Size property as: public override int Size { get { return this.size; }

Re: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-23 Thread Carlos Guzmán Álvarez
Hello: I'm trying to update a BLOB SUB_TYPE TEXT column but I get always the following error: arithmetic exception, numeric overflow, or string truncation I'm using .net 2.0 RC4 provider and FB 2.0 RC2. The value can be retrieved from table. Send a test case, database included please.

RE: [Firebird-net-provider] Cant use BLOB: Provider limitation or what?

2006-05-23 Thread Sergio Samayoa
To your gmail account I guess... -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Carlos Guzmán Álvarez Enviado el: Martes, 23 de Mayo de 2006 01:30 p.m. Para: firebird-net-provider@lists.sourceforge.net Asunto: Re: [Firebird-net-provider] Cant use BLOB