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 SkipVought 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: *

  1. arm207

    error:Before start of result set

    What is the cause of this error... "error:Before start of result set" source code is the following... rs = s.executeQuery( sql2 );
  2. arm207

    how to retrieve day, month and year in jsp

    how can I retrieve day, month and year in jsp?
  3. arm207

    Printing out exceptions

    if i have catch (Throwable t) { ... } how do I print out the exception?
  4. arm207

    Jasper Exception

    What would cause exception on line 129? catch (Throwable t) { out = _jspx_out; if (out != null && out.getBufferSize() != 0) out.clearBuffer(); LINE 129 if (pageContext != null) pageContext.handlePageException(t)...
  5. arm207

    Jasper Exception

    Hi, I'm getting a wierd jasper exception and not sure how to debug it further. What's interesting is that my ViewSPClient.jsp page doesn't have 129 lines. So I'm confused. Please help. What's the root cause of something like this? How do you debug such an error? Her'es the exception I'm...
  6. arm207

    jsp and user input

    here's what I want to do. have a .jsp page that user comes to, and puts in values in html form , and I want to pass those variables in the .jsp form somewhere else. Is there an example that shows how I can use JSP to have access to values within html input box?
  7. arm207

    jsp and user input

    hi, I'm new to JSP but know java. Do you guys know of an example where you can have an html UI and pass the user input to a jsp page. How is that done? thank you
  8. arm207

    PHP session timeout

    in the example above, is TIMEOUT defined to be 600 seconds or minutes???
  9. arm207

    $_SESSION

    thank you, i see, and suppose when the user logs out, how shall I clear the $_SESSION['loginUsername'] value?
  10. arm207

    $_SESSION

    suppose I need the variable 'loginUsername' to be global to a sesssion. so first thing i do, session_register("loginUsername"); I have a showUserStatus() in another script that I want to print out the value in loginUsername. How do I use the $_SESSION variable to acutally get the value of...
  11. arm207

    duplicate key error

    hi, would anyone know what the cause of the following symptom is... Fatal error: MySQL error: 1062 : Duplicate entry '0-1-1' for key 1 in why is it not allowed to have multiple entries with same value?
  12. arm207

    parsing error, formVariables

    for example... $query = "UPDATE users SET user_name='$formVariables["username"]' , are the ' and " in the right places, I seem to be getting a parsing error. I need to know if there is something wrong with this syntax... '$formVariables["username"]'
  13. arm207

    PHP session timeout

    assume we are using Tomcat server.
  14. arm207

    PHP session timeout

    Hi, Is it possible to provide php session timeout functionality by modifying php.ini? How? If the above is not possible, does anyone know of an example on how to do php session timeouts?
  15. arm207

    @ character

    what's the difference between... $con = @ mysql_connect(... and $con = mysql_connect(...
  16. arm207

    MySQL error: 1064

    oops never mind, what had happened was that I had an if case for a registered session so that code didn't execute the first time around, but it did the 2nd time around since session was registered. So that piece of code had contained the sql error.
  17. arm207

    MySQL error: 1064

    b/c the sql syntax is correct, it works the first time, however when page gets reloaded, error code 1064 appears.
  18. arm207

    MySQL error: 1064

    Does anyone know what generally causes error code 1064 to appear? as in... Fatal error: MySQL error: 1064 : You have an error in your SQL syntax near '' at line 1 in
  19. arm207

    Parse error:

    here's the link its complaining about, not sure why... " WHERE user_id = \"" . $userID . "\"";
  20. arm207

    Parse error:

    does anyone know what- Parse error: parse error, unexpected T_STRING in ... means?

Part and Inventory Search

Back
Top