On Wed, Feb 17, 2010 at 19:34, Ramsees <[email protected]> wrote:
> It would be nice if there would be a FbParameter construtor with the
> parameter type, this is because it is common to execute statements wit the
> "RETURNING" clausule.
>
> This would save code becuase right now you have to create an instance of the
> FbParameter and then put is type to output and the add it to the command.
>
> With this new constructor we could add it to the FbCommand in one line as we
> do with a default input parameter.

You can use ctor:
public FbParameter(
            string parameterName,
            FbDbType dbType,
            int size,
            ParameterDirection direction,
            bool isNullable,
            byte precision,
            byte scale,
            string sourceColumn,
            DataRowVersion sourceVersion,
            object value)

-- 
Jiri {x2} Cincura (CTO x2develop.com)
http://blog.cincura.net/ | http://www.ID3renamer.com

------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to