From: Carlos G. A. <car...@te...> - 2003-08-05 13:48:10
|
Hello: > Ideally I would like to be able to derive the parameters without having to > know anything about the parameters in advance, this is possible with the SQL > Server and Oracle data providers but I can't find a way to do it using > Firebird. If i understand well you want to derive parameters from anything like this: FbCommand cmd = new FbCommand("execute procedure test_derive", connection, transaction); If i'm rigth the only way i know for this is to extract parameters from database metadata, this would be easy to implement in 1.5 version ( it has clases for extract schema information ), i'm rigth ?? Ideas and comments are wellcome :) -- Best regards Carlos Guzmán Álvarez Vigo-Spain |