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 IamaSherpa 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. knowitnot

    SQL*Plus

    thanks for you help guys. i used the commands per Dave's advice and was able to successfully connect. the database is only a piece of a more complicated test server for a ERP system - Compiere. Thanks for getting me past the first hurdle.
  2. knowitnot

    SQL*Plus

    i'm not sure what the problem is, but my attempt to start SQL*Plus returns the following two errors: ORA-01034: Oracle not available and ORA-27101: shared memory realm does not exist. My installation passed all tests so I'm pretty sure something is not being pointed in the right direction...
  3. knowitnot

    Primary master drive failes

    Thanks for the suggestion. I ended up running a parallel install on the primary drive after detaching the second HD and I was able to access all the other profiles and personal documents still in tact. *phew* Still I wish I had been able to repair the drive instead of working around the problem.
  4. knowitnot

    Primary master drive failes

    I suspect someone messed around with the boot files and moved them to the wrong partition because the bios is recognizing the slave drive as the primary and the primary is not getting detected. Initially I was getting a NTLDR is missing. The primary partition is running a Windows XP Home and I...
  5. knowitnot

    problem connecting to the database

    excuse me if i'm confusing the situation more for you guys. i'm just beginning to familiarize myself with the model-2 apprach of web app design. from my reading, i'm beginning to wonder if i need to use an ejb. terminology aside i just want to make the db connection as resource efficient as...
  6. knowitnot

    problem connecting to the database

    thanks for the replies venur and sedj, i am aware of the available constructors and have attempted both the constructor you mention and the contructor: getConnection (String url) referencing the servletcontext config param <parm-name>url<param-name>...
  7. knowitnot

    problem connecting to the database

    hi venur, actually i'm trying to run this application without utilizing connection pooling even though this method is reccomended. i'm doing this for my own benefit; I just don't understand why it's not connecting... =( i suspect it has to do with the way mysql is reading the getConnection...
  8. knowitnot

    problem connecting to the database

    i'm running tomcat5.0 mysql4.0 in my applications deployment descriptor i've got: <servlet> <servlet-name>ControllerServlet</servlet-name> <servlet-class>ControllerServlet</servlet-class> <!-- Define initial parameters that will be loaded into the Servlet Context object in the...
  9. knowitnot

    Compilation error using Custom Tags

    one more thing i left out... =P the jsp file! <% taglib uri="/myTLD" prefix="easy" %> <easy:myTag/>
  10. knowitnot

    Compilation error using Custom Tags

    hi. i'm having some difficulty working with a simple custom tag. when i load the jsp file, i receive a runtime error that reads... org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: 1 in the jsp file: /MySimplePage.jsp Generated servlet error...
  11. knowitnot

    JDBC issues with Tomcat, mysql and jconnector

    Thanks for your help with my problem. the extra line of code you suggested corrected the errors i was getting.
  12. knowitnot

    JDBC issues with Tomcat, mysql and jconnector

    btw, i'm not using a bean in my jsp. does that matter?
  13. knowitnot

    JDBC issues with Tomcat, mysql and jconnector

    i tried compiling the source file like this: javac -d c:\tomcat\webapps\testdb\WEB-INF\classes\test TestSQLLoad.java but i'm still getting the same error as before. why is the class not loading? any other suggestions would be helpful.
  14. knowitnot

    JDBC issues with Tomcat, mysql and jconnector

    TestSQLLoad is located in the classes directory that falls below the WEB-INF directory of my webapp testdb. and no it isnot in a package. i can load http://localhost/testdb and view the directory structure but i can't load the test-db.jsp file. webapps- | |---ROOT | |--testdb |...
  15. knowitnot

    JDBC issues with Tomcat, mysql and jconnector

    hi i'm running windows xp professional, tomcat 5, mysql 4.X and jconnector 3.012 i am unable to sucessfully execute the following jsp code to test jdbc: <html> <head> <title>DB Test</title> </head> <body> <% TestSQLLoad tst = new TestSQLLoad(); tst.init(); %> <h2>Results</h2> User...

Part and Inventory Search

Back
Top