'function to convert null to nothing
Function CheckDate(ByVal DRow As DataRow, ByVal strCol As String) As Date
If DRow.Item(strCol) Is System.DBNull.Value Then
Return Nothing
Else
Return DRow.Item(strCol)
End If
End Function
Dim DRow as DataRow
Dim myDate as Date
' do some sql to pupulate DRow with data (column EndDate is null)
' then..
myDate = CheckDate(myDataRow,"EndDate")
if I look at myDate now, it contains 12:00am instead of Nothing.. why ? The CheckDate function gets to the Return Nothing line,
but that is not what gets assigned to myDate
--
Adrian Parker 7 3395
I'd almost consider this a VB.NET bug, but that's just me. C# wouldn't have
let you compile this at all.
Date is actually a VB.NET language wrapper around System.DateTime.
System.DateTime is not a class, it's a structure - which is a value type.
What that means to you is you can't assign nothing to a value type, so you
cant assign Nothing to a Date.
VB.NET "helpfully" changes your
[myDate = nothing] line (which is basically what is hapenning) into
[myDate = Date.MinValue] (which is the the same value VB.NET will
initialize Date types into by default if you don't initalize them
explicitly.
That's why you're seeing confusing behavior.
"Adrian Parker" <ap******@nospam.com> wrote in message
news:et**************@TK2MSFTNGP10.phx.gbl... 'function to convert null to nothing Function CheckDate(ByVal DRow As DataRow, ByVal strCol As String) As Date If DRow.Item(strCol) Is System.DBNull.Value Then Return Nothing Else Return DRow.Item(strCol) End If End Function
Dim DRow as DataRow Dim myDate as Date
' do some sql to pupulate DRow with data (column EndDate is null) ' then.. myDate = CheckDate(myDataRow,"EndDate")
if I look at myDate now, it contains 12:00am instead of Nothing.. why ?
The CheckDate function gets to the Return Nothing line, but that is not what gets assigned to myDate
-- Adrian Parker
* "Adrian Parker" <ap******@nospam.com> scripsit: 'function to convert null to nothing Function CheckDate(ByVal DRow As DataRow, ByVal strCol As String) As Date If DRow.Item(strCol) Is System.DBNull.Value Then Return Nothing Else Return DRow.Item(strCol) End If End Function
Dim DRow as DataRow Dim myDate as Date
' do some sql to pupulate DRow with data (column EndDate is null) ' then.. myDate = CheckDate(myDataRow,"EndDate")
if I look at myDate now, it contains 12:00am instead of Nothing.. why ? The CheckDate function gets to the Return Nothing line, but that is not what gets assigned to myDate
'DateTime' is a value type, assigning 'Nothing' to it will set it to its
default value.
--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
ah, ok, makes sense. thanks guys.
"Philip Rieck" <st***@mckraken.com> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl... I'd almost consider this a VB.NET bug, but that's just me. C# wouldn't have let you compile this at all.
Date is actually a VB.NET language wrapper around System.DateTime. System.DateTime is not a class, it's a structure - which is a value type. What that means to you is you can't assign nothing to a value type, so you cant assign Nothing to a Date.
VB.NET "helpfully" changes your [myDate = nothing] line (which is basically what is hapenning) into [myDate = Date.MinValue] (which is the the same value VB.NET will initialize Date types into by default if you don't initalize them explicitly.
That's why you're seeing confusing behavior.
"Adrian Parker" <ap******@nospam.com> wrote in message news:et**************@TK2MSFTNGP10.phx.gbl... 'function to convert null to nothing Function CheckDate(ByVal DRow As DataRow, ByVal strCol As String) As Date If DRow.Item(strCol) Is System.DBNull.Value Then Return Nothing Else Return DRow.Item(strCol) End If End Function
Dim DRow as DataRow Dim myDate as Date
' do some sql to pupulate DRow with data (column EndDate is null) ' then.. myDate = CheckDate(myDataRow,"EndDate")
if I look at myDate now, it contains 12:00am instead of Nothing.. why ? The CheckDate function gets to the Return Nothing line, but that is not what gets assigned to myDate
-- Adrian Parker
Close, but only 1/2 a cigar :-)
Date is not a wrapper. It is an alias to System.DateTime. The compiler sees
this, and writes System.DateTime in the background. Just like string
(lowercase) is a C# alias for System.String.
However, you are correct in that System.DateTime is a value type (in this
case, structure), and not a reference type. Where the line becomes fuzzy
about "right/wrong/bug/feature" is that while you cannot directly assign
null to a value type, you can box value types and treat them like reference
types. Adrian's example in C#, using more explicit boxing, would produce:
return (DateTime)((Object)null);
which C# does in fact let you compile, although this produces a runtime null
exception.
And though you cannot explicitly and directly assign null to a value type in
C#, it is perfectly valid with reguards to the C# compiler to assign a
reference type value which *MIGHT* be null, though again, you would get a
runtime null exception.
In VB's case, as you state, VB "helpfully" invokes
MS.VB.CompilerServices.DateType.FromObject(null) to initialize the date
variable, which in thise case produces DateTime.MinValue, partly because
it's a VB language feature that all local variables of value types are
initialized to a default value. They are never in an "unassigned" state. In
C#, you are forced to initialize them explicitly before you use them.
-Rob Teixeira [MVP]
"Philip Rieck" <st***@mckraken.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl... I'd almost consider this a VB.NET bug, but that's just me. C# wouldn't
have let you compile this at all.
Date is actually a VB.NET language wrapper around System.DateTime. System.DateTime is not a class, it's a structure - which is a value type. What that means to you is you can't assign nothing to a value type, so you cant assign Nothing to a Date.
VB.NET "helpfully" changes your [myDate = nothing] line (which is basically what is hapenning) into [myDate = Date.MinValue] (which is the the same value VB.NET will initialize Date types into by default if you don't initalize them explicitly.
That's why you're seeing confusing behavior.
"Adrian Parker" <ap******@nospam.com> wrote in message news:et**************@TK2MSFTNGP10.phx.gbl... 'function to convert null to nothing Function CheckDate(ByVal DRow As DataRow, ByVal strCol As String) As
Date If DRow.Item(strCol) Is System.DBNull.Value Then Return Nothing Else Return DRow.Item(strCol) End If End Function
Dim DRow as DataRow Dim myDate as Date
' do some sql to pupulate DRow with data (column EndDate is null) ' then.. myDate = CheckDate(myDataRow,"EndDate")
if I look at myDate now, it contains 12:00am instead of Nothing.. why ? The CheckDate function gets to the Return Nothing line, but that is not what gets assigned to myDate
-- Adrian Parker
Heh.. you definately get more points for detail.. I did simplify when I
called it a "language wrapper" (as in the language (compiler) just wraps
something for you) -- that's what I call Integer as well (and yes, string in
c#), even though it's the same concept. Perhaps I'll try to force myself to
say "alias" from now on. Nope, now I'm thinking about cute secret agents.
However, I really do like c#'s behavior on this better -- it would not have
compiled the function Adrian wrote at all, giving an error that would have
sent him down the right path. And while I can see the language design
value ("make it simple for people") in setting value types to default values
so that they can be used without initialization, I really can't see the
value in allowing "valuetype = nothing" and turning it into the same thing
with nary a warning. People (well, me) expect nothing to be nothing, and
Date.MinValue to be a date value.
Perhaps I go too far saying I would consider it a VB.NET "bug"... but I
really don't like it either way.
"Rob Teixeira [MVP]" <RobTeixeira@@msn.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl... Close, but only 1/2 a cigar :-)
Date is not a wrapper. It is an alias to System.DateTime. The compiler
sees this, and writes System.DateTime in the background. Just like string (lowercase) is a C# alias for System.String.
However, you are correct in that System.DateTime is a value type (in this case, structure), and not a reference type. Where the line becomes fuzzy about "right/wrong/bug/feature" is that while you cannot directly assign null to a value type, you can box value types and treat them like
reference types. Adrian's example in C#, using more explicit boxing, would produce: return (DateTime)((Object)null); which C# does in fact let you compile, although this produces a runtime
null exception. And though you cannot explicitly and directly assign null to a value type
in C#, it is perfectly valid with reguards to the C# compiler to assign a reference type value which *MIGHT* be null, though again, you would get a runtime null exception. In VB's case, as you state, VB "helpfully" invokes MS.VB.CompilerServices.DateType.FromObject(null) to initialize the date variable, which in thise case produces DateTime.MinValue, partly because it's a VB language feature that all local variables of value types are initialized to a default value. They are never in an "unassigned" state.
In C#, you are forced to initialize them explicitly before you use them.
-Rob Teixeira [MVP]
"Philip Rieck" <st***@mckraken.com> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl... I'd almost consider this a VB.NET bug, but that's just me. C# wouldn't have let you compile this at all.
Date is actually a VB.NET language wrapper around System.DateTime. System.DateTime is not a class, it's a structure - which is a value
type. What that means to you is you can't assign nothing to a value type, so
you cant assign Nothing to a Date.
VB.NET "helpfully" changes your [myDate = nothing] line (which is basically what is hapenning) into [myDate = Date.MinValue] (which is the the same value VB.NET will initialize Date types into by default if you don't initalize them explicitly.
That's why you're seeing confusing behavior.
"Adrian Parker" <ap******@nospam.com> wrote in message news:et**************@TK2MSFTNGP10.phx.gbl... 'function to convert null to nothing Function CheckDate(ByVal DRow As DataRow, ByVal strCol As String) As Date If DRow.Item(strCol) Is System.DBNull.Value Then Return Nothing Else Return DRow.Item(strCol) End If End Function
Dim DRow as DataRow Dim myDate as Date
' do some sql to pupulate DRow with data (column EndDate is null) ' then.. myDate = CheckDate(myDataRow,"EndDate")
if I look at myDate now, it contains 12:00am instead of Nothing.. why
? The CheckDate function gets to the Return Nothing line, but that is not what gets assigned to myDate
-- Adrian Parker
"Philip Rieck" <st***@mckraken.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl... Heh.. you definately get more points for detail.. I did simplify when I called it a "language wrapper" (as in the language (compiler) just wraps something for you) -- that's what I call Integer as well (and yes, string
in c#), even though it's the same concept. Perhaps I'll try to force myself
to say "alias" from now on. Nope, now I'm thinking about cute secret
agents.
I guess the only reason i make the distinction is because there are tons of
actual wrappers in .NET, mostly for unamanged code constructs (like COM
components). Seems to imply "extra" code wrapped around another construct. I
had to get in the habit of saying Alias too, but since that's what they use
all over the Specifications, it stuck - though admitadly not as cute as the
agent.
As for the null assignment, I can see part of why the VB compiler would do
that, but I agree in so much as using Option Strict On should at the very
least provide a warning.
-Rob Teixeira [MVP]
Although it's a fudge, you can still use datevar = nothing and then compare it to nothing to see if it's set to the autocasted
default var.
But what would be the prefered method ? create an object that encapsulated the datevar and a boolean test property ?
-Adrian This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: jfj |
last post by:
I don't understand.
We can take a function and attach it to an object, and then call it
as an instance method as long as it has at least one argument:
#############
class A:
pass
def...
|
by: BigMan |
last post by:
How can I check if assignment of a float to a double (or vice versa)
will result in loss of precision?
|
by: agentxx04 |
last post by:
Hi. Our assignment was to creat a program that can find the average, median
& mode of a #of integers. Here's my program:
#include<stdio.h>
int main()
{
int item;
int a, b, t, mode;
int...
|
by: m_a_t_t |
last post by:
Ok, I'm reading "The C Programming Language: 2nd Edition" and I'm on
chapter 1.5.1 and here's the program you're sposed to make:
#include <stdio.h>
/* copy input to output; 1st version */...
|
by: rahul8143 |
last post by:
hello,
I am really confused over following for code snippets. No problem
that they are working codes but how? how they are evaluated by
compiler? It will be my pleasure if you explain me all...
|
by: Rachel Suddeth |
last post by:
I'm trying to use reflection to create an object at runtime where the type
is given by a string. I thought we should be able to do that, but so far
it's not working. I'm trying to work on...
|
by: Louise |
last post by:
I use Visual Basic .NET Framework 1.1, Visual Studio. I have a Web page
(aspx) referencing a control (ascx) that has a placeholder that is assigned
one of 2 child controls through buttons. The...
|
by: weston |
last post by:
I've got a piece of code where, for all the world, it looks like this
fails in IE 6:
hometab = document.getElementById('hometab');
but this succeeds:
hometabemt =...
|
by: redefined.horizons |
last post by:
I've been reading about Python Classes, and I'm a little confused about
how Python stores the state of an object. I was hoping for some help.
I realize that you can't create an empty place holder...
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
| |