vote up 0 vote down star

Hi all,

Having an issue with type conversion in ASP classic.

heres my code:

    	Set trainingCost = Server.CreateObject("ADODB.Recordset")
	strSQL3 = "SELECT cost1 FROM tblMain WHERE (Booked = 'Booked') AND (Paid IS NULL) AND (PaidDate BETWEEN '01/04/" & startyear & "' AND '31/03/" & endyear & "')"
	trainingCost.Open strSQL3, Connection
	trainingCost.movefirst
	totalTrainCost = 0
	do while not trainingCost.eof
		trainCost = trainingCost("cost1")
		If NOT isNull(trainCost) then
			trainCostStr = CStr(trainCost)
			trainCostStr = Replace(trainCostStr, "£", "")
			trainCostStr = Replace(trainCostStr, ",", "")
			totalTrainCost = totalTrainCost + CInt(trainCostStr)
		end if
		trainingCost.movenext
	loop 

	trainingCost.close

when I run this I get the following error:

Microsoft VBScript runtime (0x800A000D) Type mismatch: 'CInt' /systems/RFT/v1.2/Extract.asp, line 43

which is "totalTrainCost = totalTrainCost + CInt(trainCostStr)"

Im guessing that the problem is to do with the String value being uncastable to Int in which case is there any way to catch this error? I havent worked with asp classic much so any help would be usefull

cheers

-EDIT-

the type of column cost1 is String as it may contain a number or a sequence of chars eg £10.00 or TBC

flag

What data type sore the Cost1 field have in tblMain? If its a string type, why is not a Currency type?? – AnthonyWJones Aug 17 at 11:52
Ok so sorry i forgot to mention that the Cost1 column contains strings which can be null or £0.00 or 0.00 or 0 or TBC, so it can't be formatted as a string. – Jambobond Aug 17 at 12:43
sorry "so it can't be formatted as currency" – Jambobond Aug 17 at 12:44
It might be worth pointing out that you aren't in a position to change the DB Schema. – AnthonyWJones Aug 18 at 10:25

4 Answers

vote up 2 vote down check

You have a couple of choices. You can be proactive by checking ahead of time whether the value is numeric using the IsNumeric function:

 If IsNumeric(trainCostStr) Then
    totalTrainCost = totalTrainCost + CInt(trainCostStr)
 Else
    ' Do something appropriate
 End If

...or you can be reactive by using error catching; in Classic ASP probably easiest to define a function and use On Error Resume Next:

Function ConvertToInt(val)
    On Error Resume Next
    ConvertToInt = CInt(val)
    If Err.Number <> 0 Then
        ConvertToInt = Empty
        Err.Clear
    End If
End Function

Or return 0 or Null or whatever suits you, then use it in your trainCost code.

Note that CInt expects an integer and will stop at the first non-digit, so "123.45" comes back as 123. Look at the other conversions, CDouble, CCur, etc.

link|flag
Actually CInt uses the same parsing used in CDouble or CSingle then converts the resulting value to an Int. Hence CInt("123.6") results in 124. – AnthonyWJones Aug 17 at 12:06
Doh! I work with so many slightly different languages. Of course you're right, it rounds. Cheers, Anthony. – T.J. Crowder Aug 17 at 12:19
Thanks If IsNumeric worked great! cheers! – Jambobond Aug 17 at 13:12
vote up 1 vote down

Potentially solving the wrong problem, depends on the type of Cost1 within the database but the code is looping through the records to generate a total.

strSQL3 = "SELECT sum(cost1) FROM tblMain WHERE (Booked = 'Booked') AND (Paid IS NULL) AND (PaidDate BETWEEN '01/04/" & startyear & "' AND '31/03/" & endyear & "')"        
trainingCost.Open strSQL3, Connection

etc and just read off the value as a total.

I don't see why the RS is being looped to generate a sum when the database can do that work for you. All the conversion work it has generated just looks artifical.

link|flag
This is actually a good point. You could even go one step further and ask, "Wouldn't it be better to place this in a stored procedure and call that rather than having inline SQL?". – Phil.Wheeler Aug 17 at 11:52
Yes, and avoid potentially dodgy string concatenation allowing SQL injection, I nearly added a comment to that effect before. – Andrew Aug 17 at 11:54
the column is not of numeric type, its a string. dont ask me why its a legacy project. – Jambobond Aug 17 at 13:05
vote up 2 vote down

Rather than casting to a string, why not use CCur (Cast as Currency) so that your commas and any currency symbols (I think) are effectively ignored while doing arithmetic operations?

link|flag
1  
Note that VBScript is quite happy converting numerical strings containing . and , and even prefixed currencty symbols to Int using CInt. – AnthonyWJones Aug 17 at 12:03
vote up -1 vote down

Heh heh. Classic ASP. You have my pity :) Anyway,

On error resume next

And then on the next line, check that it worked.

Though maybe you want CDouble. Is that a function? I can't remember.

link|flag
I would argue that it's a really bad idea to just swallow and ignore all exceptions. You're better to prevent the exception from coming up in the first place. – Phil.Wheeler Aug 17 at 11:44
There are still developers working on it ;-) I am one too – Shoban Aug 17 at 11:46
Yes phil, that's pretty obvious; but I am showing how you can detect an error, as asked. I quote 'is there any way to catch this error'. Please read the question before downvoting. – silky Aug 17 at 11:47
1  
-1. On Error Resume Next is a last resort, that shouldn't be needed in this case. Even if it were you should detail how to use it safely. – AnthonyWJones Aug 17 at 11:49
1  
@Silky, a) I can see you are trying to answer the specific question however its not good advice. b) Good answers do not always answer the specific question but lead to better practices altogether. Storing currency values as strings in the DB is the real root of the problem. – AnthonyWJones Aug 17 at 12:02
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.