473,378 Members | 1,512 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Convert.ToDateTime

I have datetime variable:

Datetime tsEndTime;

Should I use (DateTime):
tsEndTime=(DateTime)rdr.GetValue(15)

or is better to use:

tsEndTime=Convert.ToDateTime(rdr.GetValue(15))

What is the difference?

Thanks,S
Nov 17 '05 #1
5 18675
Simon,

I think you should use:

tsEndTime = rdr.GetDateTime(15); // no cast or conversion necessary

Of the two versions you mention, the first

tsEndTime=(DateTime) rdr.GetValue(15);

is more efficient, as the cast does not incur the penalty of the
(unnecessary) call to Convert.ToDateTime in the second version.

Regards - Octavio
"simon" <si*********@iware.si> escribió en el mensaje
news:n_*******************@news.siol.net...
I have datetime variable:

Datetime tsEndTime;

Should I use (DateTime):
tsEndTime=(DateTime)rdr.GetValue(15)

or is better to use:

tsEndTime=Convert.ToDateTime(rdr.GetValue(15))

What is the difference?

Thanks,S

Nov 17 '05 #2
"Octavio Hernandez" <do****@danysoft.com> wrote in message
news:eO**************@TK2MSFTNGP14.phx.gbl...

Since you're already referring to the column in question by its ordinal
number within the field collection, I'd use:
tsEndTime = rdr.GetDateTime(15);
Nov 17 '05 #3
Octavio,

thank you for your answer.

When I use =(DateTime) rdr.GetValue(15), it's not always the right result.
For example: If my stored procedure returns time: '14:20:00' then this cast
will return error.
If I use convert then it returns me dateTime format.

Another example:

My stored procedure returns small int for example 0.

If I use:

int16 varI;

varI=(int16)rdr.GetValue(10) I get an error.

If I use:

varI=convert.toInt16(rdr.GetValue(10)) then it works.

So, I decided that I use everywhere convert function, unless at string data.

Do you know maybe, why this difference?

Regards,S
"Octavio Hernandez" <do****@danysoft.com> wrote in message
news:eO**************@TK2MSFTNGP14.phx.gbl...
Simon,

I think you should use:

tsEndTime = rdr.GetDateTime(15); // no cast or conversion necessary

Of the two versions you mention, the first

tsEndTime=(DateTime) rdr.GetValue(15);

is more efficient, as the cast does not incur the penalty of the
(unnecessary) call to Convert.ToDateTime in the second version.

Regards - Octavio
"simon" <si*********@iware.si> escribió en el mensaje
news:n_*******************@news.siol.net...
I have datetime variable:

Datetime tsEndTime;

Should I use (DateTime):
tsEndTime=(DateTime)rdr.GetValue(15)

or is better to use:

tsEndTime=Convert.ToDateTime(rdr.GetValue(15))

What is the difference?

Thanks,S


Nov 17 '05 #4
I believe when you do a cast, it's just reinterpret the "binary value"
into the other type, so if it's invalid, it may throw an exception.

But in "Convert" operation, it probably is doing more than one case
under the covers. It could do something which cannot be casted directly.

So, I believe the Convert is more safe, while the case is more efficient.

HTH

simon wrote:
Octavio,

thank you for your answer.

When I use =(DateTime) rdr.GetValue(15), it's not always the right result.
For example: If my stored procedure returns time: '14:20:00' then this cast
will return error.
If I use convert then it returns me dateTime format.

Another example:

My stored procedure returns small int for example 0.

If I use:

int16 varI;

varI=(int16)rdr.GetValue(10) I get an error.

If I use:

varI=convert.toInt16(rdr.GetValue(10)) then it works.

So, I decided that I use everywhere convert function, unless at string data.

Do you know maybe, why this difference?

Regards,S
"Octavio Hernandez" <do****@danysoft.com> wrote in message
news:eO**************@TK2MSFTNGP14.phx.gbl...
Simon,

I think you should use:

tsEndTime = rdr.GetDateTime(15); // no cast or conversion necessary

Of the two versions you mention, the first

tsEndTime=(DateTime) rdr.GetValue(15);

is more efficient, as the cast does not incur the penalty of the
(unnecessary) call to Convert.ToDateTime in the second version.

Regards - Octavio
"simon" <si*********@iware.si> escribió en el mensaje
news:n_*******************@news.siol.net...
I have datetime variable:

Datetime tsEndTime;

Should I use (DateTime):
tsEndTime=(DateTime)rdr.GetValue(15)

or is better to use:

tsEndTime=Convert.ToDateTime(rdr.GetValue(15) )

What is the difference?

Thanks,S



Nov 17 '05 #5
Simon,

a) Writing rdr.GetValue(15) is the same as writing rdr[15] - at runtime,
this may be a string, a DateTime or an int, but at compile time you have an
Object, and you will need the cast (or the conversion) in order for the code
to compile.

b) If you know that the 16th field is a DateTime, you can use
rdr.GetDateTime(15) which returns directly a DateTime (no cast or conversion
necessary).

c) Does your stored procedure produce in the 16th field a SQL Server
DATETIME, or a string which represents a date (and/or a time)? If it is a
string, then the cast to (DateTime) will fail (because the object is a
string, not a DateTime); the call to Convert.ToDateTime() will succeed,
provided that the string really contains the representation of a date/time.

d) Regarding the Int16, if the SP returns a small int the following code:

Int16 varI = rdr.GetInt16(10);

should work.

In general, when using data readers I prefer to rely on the specific methods
(GetInt16, GetDateTime, etc.) whenever I know the structure of the data at
hand. Only if writing some kind of "generic" read I use GetValue():

Regarding the Convert class, I avoid using it and generally succeed on that.
It reminds me of the times of VB6 and the abuse of conversions between
types. But that's only a personal opinion.

Regards - Octavio

"simon" <si*********@iware.si> escribió en el mensaje
news:Ec*******************@news.siol.net...
Octavio,

thank you for your answer.

When I use =(DateTime) rdr.GetValue(15), it's not always the right result.
For example: If my stored procedure returns time: '14:20:00' then this
cast will return error.
If I use convert then it returns me dateTime format.

Another example:

My stored procedure returns small int for example 0.

If I use:

int16 varI;

varI=(int16)rdr.GetValue(10) I get an error.

If I use:

varI=convert.toInt16(rdr.GetValue(10)) then it works.

So, I decided that I use everywhere convert function, unless at string
data.

Do you know maybe, why this difference?

Regards,S
"Octavio Hernandez" <do****@danysoft.com> wrote in message
news:eO**************@TK2MSFTNGP14.phx.gbl...
Simon,

I think you should use:

tsEndTime = rdr.GetDateTime(15); // no cast or conversion necessary

Of the two versions you mention, the first

tsEndTime=(DateTime) rdr.GetValue(15);

is more efficient, as the cast does not incur the penalty of the
(unnecessary) call to Convert.ToDateTime in the second version.

Regards - Octavio
"simon" <si*********@iware.si> escribió en el mensaje
news:n_*******************@news.siol.net...
I have datetime variable:

Datetime tsEndTime;

Should I use (DateTime):
tsEndTime=(DateTime)rdr.GetValue(15)

or is better to use:

tsEndTime=Convert.ToDateTime(rdr.GetValue(15))

What is the difference?

Thanks,S



Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: | last post by:
I have two text boxes; startTimeTextBox.Text = "08:00"; endTimeTextBox.Text = "15:00"; and now I will check if startTimeTextBox.Text starts really before endTimeTextBox.Text something like...
2
by: Franck | last post by:
Hi, 'm gettin mad about date conversion. Here is the point. Got and add-in for Excel which call functions from a web service (on a remote server) The remote server has regional settings...
19
by: simon | last post by:
I get from the dateTimePicker the value: string="12/18/2003 11:52:28 AM" Now I need to convert this to dateTime. Any function I use: Convert.ToDateTime(string) or Cdate(string), I get an error...
3
by: sparkle | last post by:
Hi, Does anybody know how to convert date to ticks from a dateTimePicker? What I'm using now isn't working. I'm trying to use a dateTimePicker to set an appointment in Outlook with a...
2
by: SimonZ | last post by:
Hi, can someone explain me, when to use: (DateTime)DataBinder.Eval(Container.DataItem, "dateField") OR Convert.ToDateTime(DataBinder.Eval(Container.DataItem, "dateField")) Sometimes...
5
by: rsanan | last post by:
How do I convert a datetime from en-GB to en-US format here is my code - (not working for the clients outside of US) /*******************CODE*****************/ System.Globalization.CultureInfo...
14
by: Me | last post by:
Hi all I am getting a really bizzare error on when I convert a string into a datetime: The code is : DateTime dt1 = Convert.ToDateTime("10 Sep 2005"); Console.WriteLine(dt1.Year);
4
by: tshad | last post by:
Is there any difference between convert.ToDateTime and System.DateTime.Parse? I am using them both and they seem the same. Is one better to use than another? Thanks, Tom
4
by: =?Utf-8?B?YW5kcmV3?= | last post by:
I am running an ASP.net program written in VB. At one point I try to convert a date string into a date time object... this string is from a central dev server and the code works on many other...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.