vote up 0 vote down star

Hi, On the classs level, I have declared:

System::Data::Odbc::OdbcConnection conn;
System::Data::Odbc::OdbcDataReader datareader; //doesnt work
System::Data::Odbc::OdbcDataReader^  datareader //works

However, the dataReader has to be OdbcDataReader^. I dont understand why. Thanks

flag

2 Answers

vote up 0 vote down check

With OdbcConnection conn; you are instantiating a connection object directly (on the stack). Not sure if that is a good idea but it is possible.

You cannot do that with a OdbcDataReader datareader; because that class only has hidden (private/internal) constructors. That is by design, you are not supposed to create DataReaders directly but instead get them from a call to ExecuteReader(). And ExecuteReader returns OdbcDataReader^ . See MSDN.

link|flag
I need to instantionate connection directly because many methods share it and its also passed to other classes as parameter. – Petr Nov 4 at 10:51
Petr, if you need to share the connection then you probably do want a reference (managed pointer). – Henk Holterman Nov 4 at 12:48
whilst the second para of this answer is helpful, the first is factually incorrect - Despite syntactic appearances, the instance is not created on the stack, it's still on the managed heap; it's just that it is deterministically disposed when the scope ends. – tragomaskhalos Nov 9 at 17:34
Ok, thanks. I know C# and C++ but not the CLI stuff. Feel free to edit, or copy paste to your own answer. – Henk Holterman Nov 9 at 20:03
vote up 0 vote down

I'm not sure if this answers your question but here goes:

Connection and DataReader classes come in pairs on the .NET Framework, depending on the database technology used. So you have OdbcConnection and OdbcDataReader, also SqlConnection and SqlDataReader, etc. You have always to use them in pairs. Note anyway that all of these implement the common interfaces IDataConnection and IDataReader.

EDIT. Fine, I completely misunderstood the question. :-/

I usually use C#, not C++, but I think that it is because you can directly create a new instance of OdbcConnection, but as for the OdbcDataReader, you need to obtain an instance by executing the ExecuteReader method on the corresponding OdbcCommand. ExecuteReader returns a pointer to a new OdbcDataReader object.

link|flag
Thanks, but my question is why I dont need use handle with odbcconnection, while I have to useOdbcDataReader^? – Petr Nov 4 at 9:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.