Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to combine two columns in SQL query but getting the following exception in java.sql.ResultSet's FindColumn method:

JdbcSqlException: The column name FullName is not valid. Column: 'FullName'

Here is my SQL query

SELECT U.FirstName + ' ' + U.LastName AS FullName FROM User as U

Anyone?

Please note that query runs fine when I run it directly in SQL Server management studio. Also, this query is part of a big query that's why U as alias.

share|improve this question
are you able to post the full query? I get the feeling the problem is not in this SELECT. – p.campbell Sep 3 '10 at 15:59
Sorry, my bad. It was a mistake in my code. Nothing to do with the query. Going to delete the question. @p.campbell. You were right. Thanks. – Jahanzeb Farooq Sep 3 '10 at 16:00
perhaps don't delete the question, but leave your findings for others. You won't be the first person to come across this problem. – p.campbell Sep 3 '10 at 16:04
@p.campbell. Yeah, you are right. Not deleting it. Though hope people don't downvote it :) – Jahanzeb Farooq Sep 3 '10 at 16:09
1  
You should post an answer explaining the root cause and then mark it accepted when time allows it. – BalusC Sep 3 '10 at 20:00

2 Answers

When you put "AS FullName", Fullname is a label now. JDBC gets data by "column name" or "field name". You have to change your code (I dont know your prog. language) accordingly.

share|improve this answer

You might try putting parentheses around the string concatenation, as in

SELECT (U.FirstName + ' ' + U.LastName) AS FullName FROM User U

Share and enjoy.

share|improve this answer
Thanks, but didn't work :( – Jahanzeb Farooq Sep 3 '10 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.