Click to See Complete Forum and Search --> : Need help asap


jrzbuffalo
12-17-2008, 10:25 AM
How do I put a textfield in that gets SQL commands from the user and executes them on an oracle database?

Khalid Ali
12-17-2008, 11:32 AM
Let me try...
1. You need to know html so that you can create a form with a text field that when user submits goes to your application residing on the webserver
2.Application on the webserver recieves the user data from POST/GET methods from the web page,
3.Creates a connection to the database using (JDBC etc, whichever tech u use thats upto u)
4.Runs the command on the db.

so from your question i see problems, can you even create a form or a text field that can do the point 1 above?