Question : What exactly is meant by ADO.NET?

I often work with the following .NET object types.  
            OleDbConnection conn = null;
            OleDbCommand dbSelectCommand = null;
            OleDbDataReader reader = null;


            SqlConnection conn = null;
            SqlCommand dbSelectCommand = null;
            SqlDataReader reader = null;


Are these considered ADO.NET?
What NameSpaces make up ADO.NET?

using System.Data.OleDb;?
using System.Data.SqlClient;?

Answer : What exactly is meant by ADO.NET?

You can try it with the command line tool, schtasks.exe; /s allows you to specify a remote machine, /change will let you edit a task:

Schtasks.exe
http://msdn.microsoft.com/en-us/library/bb736357(VS.85).aspx

How to use Schtasks.exe to Schedule Tasks in Windows Server 2003
http://support.microsoft.com/kb/814596
Random Solutions  
 
programming4us programming4us