4
votes
7answers
86 views
SQL Query works quickly with 19 items in “IN” clause - much slower with 20. Why?
I have a query that includes this:
... AND Record.RecordID IN (1,2,3,10,11,12,13,16,17,18,26,27,28,557,31,32,33,36,37,93) AND ...
The problem seems to be that if there are 20 items or more in that …
6
votes
5answers
49 views
Software development crash course
hey guys, i need a urgent crash course on software development. We are about to start a major project at work. The project is a huge web application and i have been chosen to lead the team. The …
0
votes
2answers
55 views
Character arrays question C++
Is there any difference between the below two snippets?
One is a char array, whereas the other is a character array pointer, but they do behave the same, don't they?
Example 1:
char * …
3
votes
5answers
93 views
Why doesn’t strings.Cast<object> cast List<string> to List<object>?
It was suggested in this question, that I could cast a generic collection upward to a collection of objects with .Cast<object>. After reading up a bit on .Cast<>, I still can't get it a …
1
vote
2answers
42 views
It is a bad practice to use sun’s proprietary java classes
The compiler alerts warnings if you use sun's proprietary java classes. I'm of the opinion that it's generally a bad idea to use these classes which I must of read somewhere. However, aside from the …
1
vote
10answers
259 views
What question should be asked to test the interview candidate’s knowledge of references in C++ ?
Hi,
If a candidate says that his knowledge in C++ is 7/10 and you want to test his knowledge of references in C++, what question will you ask?
I thought of the following:
Write a function …
0
votes
2answers
38 views
PHP foreach loop key value
I am running this DB call to get me multi-dimensional array
I am trying to get the keys of each but when I try it comes up blank or as array.
$root_array = array();
$sites = …
0
votes
4answers
107 views
C# books that cover ‘real world’ uses
Background
Very few of the .NET and C# books I've read actually cover real world examples and uses for C#. For example we learn about collections and other useful aspects of the language but I …
0
votes
3answers
29 views
Find Character String In Binary Data
I have a binary file I've loaded using an NSData object. Is there a way to locate a sequence of characters, 'abcd' for example, within that binary data and return the offset without converting the …
-1
votes
3answers
29 views
Do I need to javadoc every single method or just the ‘main’ method in java?
Do I need to write javadoc for a simple method like this or should I only document the main method of any program, if so then what sort of things should I write for the main method?
Thanks,
Chris.
1
vote
4answers
29 views
Developing With Tomcat
I'm running TC 6 in "development mode", eg. the application classes are changing constantly and I want to see the latest version with minimal hassle.
For a while I was using the TC HTML 'manager' …
1
vote
7answers
49 views
Converting a string formatted YYYYMMDDHHMMSS into a JavaScript Date object.
Hello,
I have a string with a date in it formatted like so: YYYYMMDDHHMMSS. I was wondering how I would convert it into a JavaScript Date object with JavaScript.
Thanks in advance!
3
votes
6answers
93 views
Best practice for semicolon after every function in javascript?
I've seen different developers include semicolons after functions in javascript and some haven't. Which is best practice?
function weLikeSemiColons(arg) {
// bunch of code
};
or
function …
0
votes
2answers
25 views
exceptions across module boundaries in C++/CLI
Item 62 of Sutter and Alexandrescu's book "C++ Coding Standards" is "Don’t allow exceptions to propagate across module boundaries." Should we follow the same rule in C++/CLI?
0
votes
5answers
50 views
update problem in sql
i have an update statement,which gives an error "Failed to convert parameter value from a String[] to a String."
SqlCommand comm1 = new SqlCommand("UPDATE count set ETR=@ETR WHERE Id IN ( " + itemIDs …
