Executing Procedure that returns values.
----------------------------------------

                 Key: DNET-364
                 URL: http://tracker.firebirdsql.org/browse/DNET-364
             Project: .NET Data provider
          Issue Type: Bug
          Components: ADO.NET Provider
    Affects Versions: 2.6
         Environment: C#,Windows 7, Visual Studio 2010, Net Framework 4
            Reporter: Victor Israel Herrera Coronado
            Assignee: Jiri Cincura


The problem or issue that I've with the new version of Firebird.Net 2.6. 
library it's that I can't execute store procedures as I'd usually do with the 
previous version (2.5). Not produces any kind of error, only the procedure that 
would output information returns nothing. 

For example: With C#, Getting a DataSet
// Supposed m_fb_cnn as a valid FirebirdConnection
FbAdapter m_fb_ad = new FbAdapter("GET_INFO", m_fb_cnn);
m_fb_ad.SelectCommand.CommandType = CommandType.StoreProcedure;
m_fb_ad.SelectCommand.Params.Add("V_PARAM","VALUE");

// new dataset
DataSet m_dst = new DataSet();

// fill dataset
m_fb_ad.Fill(m_dst);


It supposed that the dataset wouldn't be empty. With the library 2.5 that not 
occurs, this functioned very good but in this one (2.6) doesn't function.
What I do wrong??

Best regards



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to