Cyberherbalist

1,305
reputation
183 views

Registered User

name Cyberherbalist
member for 1 year
seen Nov 21 at 22:59
website
location Olympia, Washington, USA
age 58
A .NET C# developer, I started out as a mainframe COBOL programmer back in 1987. Transitioned to VB6 in 2000, .NET when Visual Studio 1.0 was in Beta2. Now working in ASP.NET.
Nov
23
awarded  Nice Answer
Nov
10
comment Tossing out certain result rows in a left join
You make a good point, but the case in the question is more along the lines of a generic sample; in the underlying real-world situation all the columns are needed, even if some column values get excluded in the final result.
Nov
10
comment Tossing out certain result rows in a left join
Now, it might work in DB2. Because I was asking the question for a coworker who had never heard of StackOverflow, and I don't actually have DB2, I was substituting your Sql in Sql Server Management Studio and that is where it didn't work. I directed him to this page so he can see the answers and possibly what you posted will worK in DB2. Thanks for your response in any case!
Nov
10
comment Tossing out certain result rows in a left join
This worked exactly as needed, thanks!
Nov
10
comment Tossing out certain result rows in a left join
This doesn't actually work because b.empno and a.deptname don't occur in the group by clause... and when I put them in there, the results are exactly the same as the original.
Nov
10
asked Tossing out certain result rows in a left join
Oct
27
accepted How to generate Websphere MQ script?
Sep
23
comment Does anyone remember what the statement/command “WaitOn” meant in VB3?
Agreed, but I don't think VB3 had enumeration-style values like it does today, so perhaps this was the best they could do.
Sep
22
revised Does anyone remember what the statement/command “WaitOn” meant in VB3?
Adding detail for the ultimate answer
Sep
22
comment Does anyone remember what the statement/command “WaitOn” meant in VB3?
VB3 doesn't have a right-click context menu so no Go To Definition. Unfortunately, or this question never would have been asked.
Sep
22
comment Does anyone remember what the statement/command “WaitOn” meant in VB3?
Bingo. Looking thru the code for a login method I ran into both WaitOn and WaitOff. VB3 doesn't have a right-click context menu so no Go To Definition.
Sep
22
comment Does anyone remember what the statement/command “WaitOn” meant in VB3?
Uh, I don't think so. See the code I added...
Sep
22
revised Does anyone remember what the statement/command “WaitOn” meant in VB3?
added more code
Sep
22
asked Does anyone remember what the statement/command “WaitOn” meant in VB3?
Sep
19
comment Where can I find VBSQL.VBX?
Yes! The VBX was there, as you said. Thanks very much!
Sep
18
awarded  Yearling
Sep
14
asked Where can I find VBSQL.VBX?
Sep
8
comment How to determine size property for stored procedure output parameters in C# data access layer
That is so COOOL! As soon as I read this I slapped my forehead. I've used sys. stuff before, but it just never occured to me that this could be used with SP's. Slick, @devio!
Sep
8
comment How to determine size property for stored procedure output parameters in C# data access layer
You could get the length of a column, sure, but that does not tell you what the stored procedure accessing the table is going to bring back. The SP could be obtaining column information from one or twenty tables, concatenating them, truncating them, or substituting its own values. There is no way to predict this based on the table. You have to know what the SP is sending back.
Sep
8
comment how to generate web service out of wsdl
Generate me a method that provides a string in response to an int and two other strings. In other words, please read my mind.
Sep
8
answered How to determine size property for stored procedure output parameters in C# data access layer
Aug
24
accepted How would you interpret these dates?
Aug
19
comment What does “Method ‘~’ of object ‘~’ failed” mean?
I do have the source code, which is a good thing. There did happen to be different versions of the supporting libraries, some dating back seven years, others much more recent, though they had all been built at the same time, originally. There had been no change to the underlying code, but different compiles evidently produced enough differences to cause the error. I'm sure it didn't help that the app runs on a workstation and the dll's run on a server. I recompiled all 4 supporting libraries, and then the app itself with these fresh dll's, and that did the trick.
Aug
19
comment What does “Method ‘~’ of object ‘~’ failed” mean?
Good thought, @Jay Riggs. MDAC was all the same version on both platforms, so that wasn't it.
Aug
19
comment How can people on getacoder.com offer such insane low prices?
@Sandbox is reading into the question that @Lothar was talking about people in India, whereas all @Lothar said was that good Indian programmers get more than the amounts offered on rentacoder, even with their lower costs of living, so how can the bidders on rentacoder bid so much lower than even that, thus he interprets subsequent negative comments as slurs against Indians, instead of comments about script kiddies, scammers, and crappy programmers in general.
Aug
19
asked What does “Method ‘~’ of object ‘~’ failed” mean?
Aug
12
comment Passing command line parms to VB6 IDE in console app
Great, thanks! Now that you mention it, I recall seeing this in the past, but I haven't done much VB6 for a few years, and I have forgotten a lot.
Aug
12
asked Passing command line parms to VB6 IDE in console app
Aug
12
comment How would you interpret these dates?
Your "next Wednesday" is the way "next Wednesday" is understood in German. If I say it with no emphasis on "next" I mean the immediate subsequent occurrence of it after today, but upon checking my usages, I find that if I emphasize "next" I mean what you mean! Yikes. BCS will not be able to detect speech emphasis in text, I'm afraid. Talk about intractable problems.
Aug
12
answered How would you interpret these dates?
Aug
12
comment Correct String Escaping for T-SQL string literals
A CRLF wouldn't survive the xml-processing, would it? Since it's treated as whitespace you'd have to escape it somehow. How do you escape a CRLF in Xml anyway? I guess with CDATA, but how would that play out in the query?
Aug
12
comment Correct String Escaping for T-SQL string literals
Or pass the values as a delimited list in a parameter, and parse them into a temp table in the stored procedure, using that as part of the WHERE clause, as I indicated in my answer.
Aug
12
answered Correct String Escaping for T-SQL string literals
Aug
12
revised Does the Illinois Mega Million lottey ticket have the number encoded on its barcode
edited tags
Jul
30
comment Tab style nav bar with Jquery
You can use image links in CSS, I believe.
Jul
28
comment What real life bad habits has programming given you?
My wife signed up in a network marketing business and her rep id was 01270016. I couldn't explain to her why I thought her number was so funny -- she thinks I'm nuts anyway, so it's OK.
Jul
24
answered I need to write an Access 97 .mdb file
Jul
23
comment When to handle the exception?
Agreed.........
Jul
23
answered How do I get the nth element from a Dictionary?
Jul
23
comment How do I get the nth element from a Dictionary?
cipher.Values[1] won't even compile. "Argument '1': cannot convert from 'int' to 'string'"
Jul
23
answered I need to write an Access 97 .mdb file
Jul
23
comment When should I use stored procedures?
I could be wrong, but as much as I tend to purism on parameterized queries (stored procedures), I'd say it's critical only if user-responses can find their way to the Sql. If an interaction takes user-input (even sanitized user-input) and puts it into Sql, then it better be done through a SP. If user-input isn't involved (e.g. a simple query to get a list of possible values) then I would say it is permissible to do it directly. That being said, I would still never do it. But that's me.
Jul
23
comment Which one is more effecient : List<int> or int[]
Your English might be poor, but that's no reason to bump your answer down. Uncharitable jerks do exist on this site, and if they couldn't follow what you wrote, then they should have just let it stay unrated. I bumped you up just for good will. Peace.
Jul
23
comment Which one is more effecient : List<int> or int[]
@orj, how could it be "meaningless". It might be more meaningful to do what you said, but it is hardly meaningless. Harsh of you, and not at all accurrate. Besides, how many times do you think I ran the thing before posting this response? It wasn't just once, and the result posted was typical of all the runs. I didn't bother averaging them, but there didn't seem to be a need to do a "full up" benchmark.
Jul
23
answered Which one is more effecient : List<int> or int[]
Jul
20
comment How do I make a custom ASP.NET control based/subclassed on an existing one?
The <%@ Register comes after the Page directive and before the HTML on the page.
Jul
15
answered Should a programmer really care about how many and/or how often objects are created in .NET?
Jul
13
comment How can a stored proc retrieve the name of the database it’s running in?
No such thing as a dumb question, they say. But the db connection properties is found in the code accessing the database, and isn't available to the stored procedure. I'm working with some legacy code that does not pass this info to the SP.
Jul
13
asked How can a stored proc retrieve the name of the database it’s running in?
Jul
9
comment C# XmlDocument Nodes
Odd, but if the request is coming across as a string, then they can parse the two root nodes into two portions easily enough. Both @VVS and @MrPeregrination seem to have a handle on how to do it. Which UPS tracking service is this for? Didn't know they did this -- I might want to use it.