10,764 reputation
2614
bio website
location United Kingdom
age 49
visits member for 1 year, 8 months
seen 5 hours ago
stats profile views 1,226

Senior developer, with a lot of longevity who picked up one or two things on the way. Currently doing Delphi, C#, .Net4, SQL Server and a bit of XML. Started programming 8 bit machine code in 76 by way of an interest in electronics. Caught the bug, and turned out to be competent at it. Stupidly long and counting career for many industries on several platforms (quite often at the same time), in a number of languages started commercially with Paradox 2.0 for DOS....


5h
revised How to aggregate counts across two SQL tables?
deleted 1 characters in body
5h
answered All users missing after a detach/reattach
6h
comment Why doesn't the new compiler recognize “NULL” in this old code?
Indeed, how horrible of us, refusing to do your job for free. A quick google shows NULL is defined in system.variants, so you need to use that.
6h
comment How to aggregate counts across two SQL tables?
needs some table names or aliases in the group by and select list. You'll get ambiguous column MedicineTypeID from this.
6h
answered How to aggregate counts across two SQL tables?
11h
comment SqlDataReader does not update value for column
Make sure the stored procedure definitions are the same on both servers, after that it's loony tunes explanations, Like different versions of .net, sql server, collations etc.
12h
comment How to you CASE for IF THEN isssue?
Far from clear what you want or mean. Added a bit more based on a total guess. Explain in english instead of using where case and if, as I believe we are suffering from a semantics failure.
12h
revised How to you CASE for IF THEN isssue?
added 251 characters in body
17h
comment How can I combine several 'MAXIMUM' SQLite queries into one query?
Typo ? why max popularity score for parent 102, 1 and not 4
17h
comment Compound mysql query anomality issues
The query you posted has four columns in the output...
18h
comment Loading .txt file to MySQL database using Command Line Client
Are you sure they are terminated by CRLF?
1d
comment How do I use items in a listbox that are gathered from a database to select an item in the database
Dunno habits learned early are hard to break. Mind you I never mentioned doing an ORM and some DI for unit testing...
1d
comment How do I use items in a listbox that are gathered from a database to select an item in the database
I hope FullName is not expected to be unique...
1d
answered How do I use items in a listbox that are gathered from a database to select an item in the database
1d
answered How to you CASE for IF THEN isssue?
1d
answered Multidimensions in a database
1d
comment Can I assign eventlistener if the object is null?
Not sure what you are asking here. If pushchannel is null when the code gets run, you get a null reference error.
2d
comment Files.copy AccessDeniedException When Copying To C:\Windows\System32\ICE_JNIRegistry.dll
Is the dll in use?
2d
comment Does Rapidly Calling A Method With Local Variables Eat CPU/Memory?
Possibly, but at the moment you are presumably creating new instances, globalising them would make those instances common across all methods which could give you all sorts of issues. Unless you are talking huge objects, or a huge amount of equivalent ones, both of which could be addressed in other ways, messing with this would be an extreme violation of the KISS principle.
2d
comment How I can control a XML with XMLReader to fill a TreeView with Subtree Nodes?
oops, cheers @Tarasov