Posts

i have one requirement..some one help me out how to do it...my query was.if the user is selecting two days ex:monday and wednesday. i need to get all the monday and wednesday date from current date for 24 days ... like if the select tuesday and thursday i want to get date of those days for 24 count ...

Few Question in Mysql. If any one know means tell me?

Am working in live server database without taking backup. Unfortunately I truncate the table means is there any way to retrieve the truncate table in mysql? Answer Please... Like wise same i working in live server database without taking backup. IF i delete the row in a table. Is there any other way to retrieve the row? Answer Please....  Likewise same while working in MySqlYog if we have duplicate values in a table. We selecting the row with where condition. Then it will display the values Table name: orderdetails Orderid  Ordernumber  Employeeid 1                  1201          231 2                  1201          231 We select the any one values and click the delete button. Then it will ...

Update Query in MySql

Update Query -------------------                                            --> You can update more one column value together.                      --> You can give any condition using [where clause]. Syntax to update in mysql -------------------------- ------- -- Update                   Table-Name  Set                   Column-Name1 = "Value1",                   Column-Name2 = "Value2"     ...

Is Java Fully Object Oriented Language?

Is Java Fully Object Oriented Language? If Yes means tell me how it is? If No means tell me how it is? Reply to this whoever known....

How to get data between two dates in mysql?

If any one knows means tell me... Please answer here.............

404 Not Found and Some HTTP Errors Explained clearly

 This post is published in one of the popular networks.. I Just shared the link here http://www.techgig.com/readnews.php?category=Future+Tech&tgnews_link=http%3A%2F%2Frss.feedsportal.com%2Fc%2F35261%2Ff%2F656072%2Fs%2F47aaa956%2Fsc%2F15%2Fl%2F0L0Shongkiat0N0Cblog0Ccommon0Ehttp0Eerrors0C%2Fstory01.htm&tg_type=rss&tgnews_id=57606 You too know it and forward to your friends and developers

How can we print the current date in the Mysql Database?

Most formally we use the now(); method... For Now() method it display the current date. If use now method directly in   pst = con.prepareStatement             ("insert into uploadfilename values('" + uf.id + "','" + myFileFilename + "','" + now() + "')");             int x = pst.executeUpdate(); I used this and execute it in the local database. It is updated in the database. but while executing in the live server it will through two exceptions                          InvocationTargetException and NoClassDefFoundError Exception. It will execute the current date in the database but it shows some warnings.. but it is not the correct way to display the date             Date d = new Date();...