Hi all,
I've been reading "Apress - Introducing Visual CSharp 2010" the last 2 weeks and wanted to write my first app which include a connection to an access DB.
i found an article explain how to do so and in this article i found something that i dont underst in the example that was given :
using System.Data.Odbc
OdbcConnection DbConnection = new OdbcConnection("DSN=SAMPLE_ISAM")
DbConnection.Open() // so far so good
OdbcCommand DbCommand = DbConnection.CreateCommand();
in line 4 -> ( OdbcCommand DbCommand) i dont understand the syntax is it a c'tor? a variable of OdbcCommand class ?
please thanks