How to retrieve data using sql

Joined
Sep 24, 2009
Messages
4
Reaction score
0
What i am trying to do is retrieve the current date by using sql so that the date is dependant on the server, not the user's computer. Here is what i got:

// create the data adapter
SqlDataAdapter dataAdapter = new SqlDataAdapter("declare @Date datetime set @Date = getdate()", myCon);

// create the DataSet
DataSet dataSet = new DataSet();

// fill the DataSet using our DataAdapter
dataAdapter.Fill(dataSet);

When i run this, it complies fine, however the dataset does not get any data.
Im pretty sure my problem is that a DataSet is looking for a table of data, where this sql command does not return a table of data. I need something similar to this, i just want to retrieve the date from the server.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,021
Latest member
AkilahJaim

Latest Threads

Top