Viewing 15 posts - 91 through 105 (of 322 total)
I generally define input parms like so:
cmd.Parameters.AddWithValue("@TariffCode", TariffCode);
And I don't specify the size of the parameter.
December 26, 2007 at 11:59 am
It doesn't work like that. Google "dynamic sql" and sp_executesql or look it up in BOL.
December 26, 2007 at 11:51 am
I don't understand why you need to craft a decimal this way. Why not just decide on the maximum precision and scale you need based on the expected data...
December 20, 2007 at 4:03 pm
Try this:
SET @sql = 'SELECT * FROM ' + @TableName + ' Where prod_id=' + CAST(@prod_num AS varchar(10))
December 19, 2007 at 3:11 pm
And the HTML is identical in all cases. It looks fine in both OL2003 and IE6. The only place the problem shows up is when I print it...
December 11, 2007 at 4:30 pm
It is a printer problem. :blink:
There are six columns in the table. Column 4 should say "Carryover" and column 5 should say "Holiday Party". Instead #4 says...
December 10, 2007 at 2:06 pm
Hey, I remember Earl Schieb from growing up in Chicago! His TV commercial had him doing a voice over of two guys who looked like very recent parolees taping...
December 10, 2007 at 9:53 am
Don't wanna surf the web, listen to music, take photos, buy lattes, or play games on my phone; just wanna talk.
December 6, 2007 at 3:17 pm
Michael Valentine Jones (11/29/2007)
If you really think about it, it is the US that is growing fast in IT.
If you didn't take into account wage differences, and you really wanted...
November 29, 2007 at 9:37 am
Sure, as soon as I get the GPS that I got for last Christmas installed and the firmware upgraded, I'll let you know. In the meantime, just go to...
November 28, 2007 at 10:30 am
Anarctica. You should move there immediately. 😛
November 27, 2007 at 5:10 pm
karthikeyan, if you got all the articles in a pdf instead of visiting the site, you'd miss out on all the ads. 😉
November 27, 2007 at 5:05 pm
How are you inserting the row into the table? If you're using a stored procedure I can't think of how you would trigger execution of the VB.NET code on...
November 20, 2007 at 5:10 pm
I don't think you can blame government for forcing companies to offer health benefits. Unions began forcing health benefits in their contracts, governments picked them up for their employees....
November 19, 2007 at 11:35 am
Viewing 15 posts - 91 through 105 (of 322 total)