Cory House

2,149
reputation
156 views

Registered User

name Cory House
member for 1 year
seen 1 hour ago
website
location KC, KS
age 31
Web Developer using primarily C#.net and PHP.
Dec
7
answered Efficient implementation of faceted search in relational databases
Dec
5
comment Best practice for building a “Narrow your results” product filtering feature
Sometimes half the battle is just figuring out what term to Google - thanks for the tip on faceted search. I'd never heard the term.
Dec
5
comment Best practice for building a “Narrow your results” product filtering feature
The practical length is 2048 per stackoverflow.com/questions/1344616/…, but yes, good point.
Dec
4
asked Best practice for building a “Narrow your results” product filtering feature
Dec
3
comment Converting Linq to XML query from C# to VB.Net. Can you spot my error?
I actually used the same site for the initial conversion. Very handy. However, the current tool doesn't deal well with LINQ yet. But +1 since this is certainly a relevant site for others.
Dec
2
comment Which ‘super shell scripting’ language should I learn, Perl, Ruby or Tcl?
Subjective, sure. Argumentative? Now that's subjective. I see no issue with tone here.
Dec
2
comment Which ‘super shell scripting’ language should I learn, Perl, Ruby or Tcl?
Closed? If you don't like it, don't read it. C'mon guys, this is a valid question.
Dec
2
comment The best PHP editor for Vista
Was an awesome tool in version 1.5, but the replacement of Aptana PHP with Eclipse PDT was a huge step backward. I'd suggest downloading the 1.5 version to enjoy awesome PHP support including very fast intellisense.
Dec
1
revised Converting Linq to XML query from C# to VB.Net. Can you spot my error?
deleted 77 characters in body
Dec
1
comment Converting Linq to XML query from C# to VB.Net. Can you spot my error?
Thanks for the reply Richard, I actually found my call to the method this Linq query is in was bogus so the issue wasn't even with the query itself. However, regarding throwing an exception, I'd actually prefer the joins operate like an inner join. So which solution are you suggesting in that case?
Dec
1
comment Converting Linq to XML query from C# to VB.Net. Can you spot my error?
@ Richard - Yes, that's correct. Using XDocument.
Dec
1
comment Converting Linq to XML query from C# to VB.Net. Can you spot my error?
Good point Andrew - I added it.
Dec
1
revised Converting Linq to XML query from C# to VB.Net. Can you spot my error?
added object assignement
Dec
1
asked Converting Linq to XML query from C# to VB.Net. Can you spot my error?
Nov
30
accepted What is your recommendation for a good SQL IDE?
Nov
30
comment What is so evil about flash based website?
@Mk12 - Note the qualifier "typically" in my first sentence. Flash, regardless of whether or not it was/remains a technical limitation, has a reputation for the issues I've mentioned.
Nov
25
comment Smarty, the best choice?
Gotta diagree on the nice syntax part - The curly brace was a poor choice of delimiter - you have to escape any js with curly braces to avoid smarty parsing it.
Nov
23
comment Converting Linq to XML result to generic list in VB.Net. Odd error.
Excellent point and +1 for ya. I used a C# to VB converter that stripped the section assigning values to the category object. I added that back in and all is well. Thanks!
Nov
23
comment Converting Linq to XML result to generic list in VB.Net. Odd error.
Jon, there's a reason you're #1 round here, huh? :) Spot on. Simple fix and clear answer. Can't thank you enough!
Nov
22
asked Converting Linq to XML result to generic list in VB.Net. Odd error.
Nov
17
comment Help with searchform with GET
Your comment is unclear. What didn't work? Are you concerned about the order of the get params? Did the name get truncated?
Nov
16
comment PHP Framework: Ebay Like Site
Of the options you listed, Codeigniter easily has the strongest documentation, which is why it's so easy to learn/use. I'd highly recommend it.
Nov
16
revised Why should exceptions be used conservatively?
changed "extend" to "extent" in sentence 1.
Nov
16
revised Why should exceptions be used conservatively?
fixed spelling of rational to rationale
Nov
16
answered Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string?
Nov
10
comment Static classes in PHP
I believe Mario is suggesting referencing members of the static class as StaticClassName::StaticMethodName();
Oct
16
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
Yes, it's certainly a bad design. And in the end I actually removed some columns from the view that I found were need in only a few spots to resolve the issue. Regarding the db upgrade, I couldn't agree more. Some clients are simply unwilling to spend a dime on anything but functionality enhancements.
Oct
15
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
If I could upvote you again I would! The join override does work, though it does have a hit to performance as expected, though I think the production server will be able to handle it fine. You the man!
Oct
15
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
KM - There are indexes on all columns being joined. All are ints. Data is being selected from all tables being joined. Looks like a CTE isn't an option until SQL server 2005, correct?
Oct
15
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
Oops, on 7. Typo corrected.
Oct
15
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
Good catch. I misstyped. It's SQL Server 7.
Oct
15
revised SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
edited body
Oct
15
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
Wow, you're right Andrew, the explain plan shows it's doing a sort on a hash table. It doesn't resort to using a hash table until I've added a certain number of tables to the join, so I'm guessing at some point it determines there's enough data to warrant using a hash table, and thus sorting to populate that hash table.
Oct
15
comment SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
I put * in my example to keep the example short. The actual query is requesting specific necessary columns. I've edited my question for clarity.
Oct
15
revised SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
added 377 characters in body; added 4 characters in body
Oct
15
asked SQL Server Error: Cannot sort a row of size x, which is greater than the allowable maximum of 8094. But I’m not sorting.
Oct
9
comment Using Alias with MySql
I edited my response. Is that what you're looking for?
Oct
9
revised Using Alias with MySql
added 100 characters in body
Oct
9
awarded  Yearling
Oct
8
answered Using Alias with MySql
Oct
6
answered Selecting from a table where field = this and value = that
Oct
4
comment Does allowing a category to have multiple parents make sense? Are there alternatives?
Good points Steven, though the app in question is on MySQL and I'm aware of no equivalent recursive functionality. And honestly, it's the simplicity and scalability of querying a nested set that I find most attractive over the adjacency model.
Oct
4
comment Why not use tables for layout in HTML?
Good point, though you can use css to hide cells in a table based layout, to supress navigation in a printable version for instance, a CSS layout gives you much more flexibility behind merely hiding data.
Oct
4
comment Does anyone use Right Outer Joins?
I find this answer makes right joins sound special when they're not. Left and right outer joins are mirror images of each other - both useful for finding orphaned items. The choice of which to use is simply based on which table you want all rows from, even if there are no matches.
Oct
3
comment Why would I want to use Interfaces?
@Wedge - A base class would allow you to provide a default implementation down the road. But yes, you could always implement the base class at a later time if needed.
Oct
3
comment Does allowing a category to have multiple parents make sense? Are there alternatives?
I just noticed your subcategory table suggestion is describing the adjacency model. While I agree it's a simpler struture to understand initially and makes inserts and updates easy, the performance of the nested set model is far superior on selects - which on a product category structure, is 99%+ of our traffic. Plus, querying a nested set is far simpler. The adjacency model requires a join for every level in the tree which gets unwieldy on large trees.
Oct
2
awarded  Good Answer
Oct
1
comment Does allowing a category to have multiple parents make sense? Are there alternatives?
What if it's not? Like a kids glue stick. It's only arts and crafts. So you're really stuck creating a separate category, agreed? Any suggestion? I'm having a hard time picturing a situation where every product in the category would be apply in both spots. I'm not sure one even exists.
Oct
1
revised Does allowing a category to have multiple parents make sense? Are there alternatives?
added link to nested set
Oct
1
asked Does allowing a category to have multiple parents make sense? Are there alternatives?