But what if you're perofmring some sort of calculation on a variable, or you're doing some sort of boolean check after manupulating it or getting a value from a database? Or you want to put it into a database field that's been typed and you don't know if it matches and you need to convert it first?
Well here's a handy function you can use to determine what type of varient the actual value of the variable is: TypeName()
It works like this:
var = 1In this case, the output would be
Reponse.write TypeName(var)
IntegerI've found this to be especially handy when dealing with values being returned from a database or when validating variable type to prevent an SQL injection attack.
Let's say I'm using a QueryString variable to pass a record id to a page, and then I use that id to pull a record from the database. So my URL might look like:
http://www.MySite.com/results.asp?rid=223In this case I can validate it by
intRecordID = Request.QueryString("rid")It's also handy when telling the differnece between NULL and an Empty String. Anyone who's done development knows that just because there's nothing in the variable doen't mean it's actually empty, since NULL and Empty are treated differently.
If TypeName(intRecordID) = Integer Then....
If TypeName(TheVar) = Empty then...or
If TypeName(TheVar) = NULL Then...Handy, especially whn doing some sort of conditional aggregate of data from a database pull where you're combining things.
Here's a list of all the different types than can come back:
Empty
Null
Integer
Long Integer
Single
Double
Currency
Date String
Object
Eror
Boolean
Variant
Byte
Array