2010/1/5 João Dias de Carvalho Neto :
> 4 - cmd.Parameters.Add("P_ACRN",FbDbType.Char,2).Value = fd.Acronym;
>
> One Exception raises at line 4, something like "Object Reference not set to
> an instance of object"
Isn't the fd object null?
--
Jiri {x2} Cincura (CTO x2develop.com)
http://blog.cin
Hi,
I'm using stored procedures in Firebird to do my DAO layer with Active
Record Pattern.
In this case, I have one stored procedure called SP_UNUFDAO,
Using the Command Object, when I do this code to Persist my Object on FB:
1 - FbCommand cmd = new FbCommand("SP_UNUFDAO",Connection);
2 - cmd.C