Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by PureNSimple

  1. PureNSimple

    Timer and TimerTask

    Thanks Idarke. That was real helpful. Actually I was looking for a solution in the Timer class itself. But yes you are right we can wrap it up in an infinite loop to achieve the goal. Regards, Pure
  2. PureNSimple

    Timer and TimerTask

    Hi I am trying to schedule a recurring task using Timer and TimerTask classes. What I could not understand is how to schedule my task for an indefinite time. I am creating a Timer object. Then I ask it to schedule a TimerTask by passing it an instance of my TimerTask subclass. What I wish is to...
  3. PureNSimple

    PHP Development Environment

    Hi there, I am new to PHP development and I just wanted to know which one is the best PHP development product available. I'd like to see syntax highlighting, debugging, macros, code completion and code factoring in my PHP development environment. I am sure I would get some very nice...
  4. PureNSimple

    How to add two text fields?

    Hi Phili5678 You think I am still waiting for the solution even after 2 years? Man you must be kidding. right? :-) thanks anyway. Pure
  5. PureNSimple

    Null Strings

    Hi, Yes there is a method to trim Strings in java and that is yourString = yourString.trim(); regards PNS
  6. PureNSimple

    Message Board

    hi, Yes I recently finished a message board in java and it is like this message board. Tell me what kind of help you are expecting from my side? regards Simple
  7. PureNSimple

    Scrollable ResultSet

    Hi, I think you should first get that field by using getString method of resultset and then use Integer.parseInt to convert it into integer. regards Y
  8. PureNSimple

    Deleting a column from Table

    Well I add a column to a table by using ALTER table command. Now I want this column to be removed. This column does not contain any data. Tell me how to do this???
  9. PureNSimple

    How to add two text fields?

    AssalamOAlaikum (Hi)<br> Thanks for your help. Whatever you have said is very helpful to me.<br> Thanks.<br> Pure
  10. PureNSimple

    How to add two text fields?

    Salam (Hi)<br> No. It does not work. Anyway thanks for your suggestion.<br>
  11. PureNSimple

    How to add two text fields?

    I have in my table two TEXT fields. I want to add them. I have used '+' and '¦¦' operators but they give error. They work however with varchar and char fields. Just tell me how to add two TEXT fields? I cant convert them into varchar or char since they will get their data lost.
  12. PureNSimple

    Cascading Updates

    How we can cascade updates, insert or deletion in tables to enforce refrential integrity. Will I have to write a trigger for it? Or there is some other way also?
  13. PureNSimple

    Partial Matches

    Salam (Hi)<br> There are two wild cards that are used in SQL, LIKE and Underscore '_' and you can use these as<br> <br> Example 1<br> Select Field1 from mytable where Field1 LIKE '%mile'<br> Result: It will retrieve words that start with anything but that end with mile. e.g Smile, Shumile...

Part and Inventory Search

Back
Top