- Strength to Increase Rep
- +2
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: try to order the results by the msg_id descending something like... `select chat_msgs from user_chat where chat_from_id='2' and chat_to_id='10' limit 0,10 order by msg_id desc` | |
Re: Unity is an excellent game engine. It's free and supports cross-platform deployment including web, iOS, Android and more. | |
Re: What are you having trouble with? What code have you written? Where is it failing? Generic questions like this have a horrible chance to be answered, especially if you don't provide some code to prove you've done some work. If you post some code or make your question a little … | |
Re: [I'm a teapot](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error) Apparently the server is a teapot trying to make coffee and cannot serve pages to you. | |
Re: Is your break point ON the catch(exception ex) line or past it? If your break point is ON the catch line the 'ex' variable has not been initiated or assigned yet. Try putting your break point IN your catch block. If this is not the case could you supply some … | |
Re: is 'counterr' in your last statement supposed to be the int counter defined above it? If so... rs = statement.executeQuery("SELECT * FROM Quiz WHERE SrNo = " + counter + ";"); | |
Re: If you use a 'foreach' or 'for' loop you can simply pass the values from the list. You don't need to create a new Student object in your display method. You also do not need to increment your iterator (i) within the for loop. The 'i++' part of the 'for' … | |