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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lowbk
  • Order by date
  1. lowbk

    is the value the same?

    suppose i have a servlet that looks like the one below. i set a hashtable to be accessible by all the methods in the servlet. when user enters servlet, he goes into step1 and some values will be added to hashtable and then forward to jsp1. at jsp1, he clicks a button and it sends him back to the...
  2. lowbk

    transferring data from one database to another database

    hi ppl, i am writing a java program to transfer some data from one oracle database to another oracle database. i was thinking of using INSERT INTO table1 SELECT * FROM table2 but table1 and table2 are on 2 different databases, so that will mean 2 database connections. but the...
  3. lowbk

    Importing a csv file to an existing excel spreadsheet

    if i am reading this correctly, it means you may need to write a macro or something, so that the spreadsheet knows which column to write the "% free" each week. i have an idea, not sure if it works. 1) for the various csv files, give them fixed name eg wk1.csv, wk2.csv, wk3.csv etc 2) in your...
  4. lowbk

    jsp:useBean problem

    another possibility is in your form, pass the data to a servlet, then invoke the bean from the servlet.
  5. lowbk

    JSP Form Validation

    i don't know if this works. after the validation,use request.getParameter (...) to get each value (meaning 20 of them), then insert the values into SQL into database.
  6. lowbk

    Put repeated ResultSet into a method

    tom62, may i know where do you close the resultset and preparedstatement?
  7. lowbk

    Multiple ResultSets

    i would prefer to have a pair of statement and resultset for each SQL statement.
  8. lowbk

    Method for repeated results

    there are a few errors with your code, eg 1) in your code, you set statement = null, then without getting a database connection, you try to execute SQL? 2) assuming you have gotten a database connection, you declared mydata in the try block but you try to return mydata outside the try block?
  9. lowbk

    Prepared Statement and select max id issue

    i am not sure if i understand it correctly but perhaps you wanna try "synchronized
  10. lowbk

    disabling reverse proxy

    hi, may i know how to disable the reverse proxy in iis? i have tried googling but it seems that i have got the wrong searchwords cos most of them tried to link to isa server that i am not using. lowbk
  11. lowbk

    converting rows to columns

    hi, i would like to ask how to display the rows in the database into columns on crystal reports. eg my table structure is person choicenumber fruit peter 1 apple peter 2 watermelon peter 3 orange john 1 apple john 2 grapes john 3...
  12. lowbk

    problem retrieving autoarchived messages

    did you check the location of the PST file where autoarchive writes to?
  13. lowbk

    a MSDOS batch file to insert subject heading in outlook

    HI, i need some advice on inserting a subject heading and pre-written message, via msdos batch file to outlook. (i am not spamming) currently i have outlook /c ipm.note /m email@email.com but it doesn't insert subject heading or a pre-written message. i found mailto in microsoft support site...
  14. lowbk

    Read of HTTP Request POST parameters failed

    yes dian, it is a busy server (sun7 running on unix). so it is actually a timeout?? i am not the server administrator, but how to overcome it, as in what should i tell the administrator to do? lowbk
  15. lowbk

    Read of HTTP Request POST parameters failed

    i wonder if anyone can advise me on this. i have a form contains a long list of items. The form uses "post" method. After I press the submit button, I got an exception like this: java.lang.RuntimeException: Read of HTTP Request POST parameters failed: read < content length at...
  16. lowbk

    delaying delivery of message in outlook

    view=>options=>"do not deliever before...
  17. lowbk

    Throwing Exceptions

    let me try, dunno if it is what you are asking. for the second instance public int function(String variable) { int x; try { x=Integer.parseInt(variable); } catch(Exception e) { //supposing variable is invalid number x=0; } //continue rest of coding, eg...
  18. lowbk

    Stream broken

    i am using apache1.3.33 with tomcat3.2, but the tomcat console keeps showing "stream broken", "Stream closed prematurely". is there some configuration problem? may i ask how to resolve this? ------------------------------------ HANDLER THREAD PROBLEM: java.io.IOException: Stream broken...
  19. lowbk

    [warn] getsockname

    i am running apache with tomcat (os=>win2000), but since yesterday, i am unable to access my server. the apache's error.log shows a series of "[warn] getsockname". the google search only shows that it could be attacked, but no solution. would appreciate if any kind soul can suggest some solutions.
  20. lowbk

    truncate to 2 decimals places

    thanks timw, it works. but i don't understand the logic behind. do you mind explaining?

Part and Inventory Search

Back
Top