Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Database Server Software > Oracle > How do I (web interface)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-10-03, 15:30
newbdb newbdb is offline
Registered User
 
Join Date: Jan 2003
Posts: 1
How do I (web interface)

As you can tell I am very, very new to oracle. I have installed Oracle 9i on a Sun Solaris 8 Platform. What I want to do is create a web page so other people can sumbit information. How does/ or do I get my index.html (main Page) submit onfo to the database, and how do i view the results via the web? Attached is an example.

Many thanks
Attached Images
File Type: jpg web_record.jpg (35.8 KB, 353 views)
Reply With Quote
  #2 (permalink)  
Old 01-16-03, 03:38
susi susi is offline
Registered User
 
Join Date: Oct 2002
Location: Germany
Posts: 11
Question Re: How do I (web interface)

hi !

i hope, i understand you right: you want access the oracle database via webbrowser?
so you will need a technology which is able to do this, e.g. PHP, ASP, ... with PHP you can access an oracle-database, submit info to the database and you can make a query and view the result via web. (for more information take a look at www.php.net)

susi
Reply With Quote
  #3 (permalink)  
Old 01-17-03, 05:13
franz franz is offline
Registered User
 
Join Date: Aug 2001
Location: Nottingham, UK
Posts: 2
hi
being pretty new to oracle myself, i have been tinkering with inserts from web pages. It is possible to insert data using just an htm page and a simple form. I'm looking into how to query data back atm.
here's what i got to insert stuff with.... (intermedia is installed on my ora db, i'm on solaris 8 too)


<FORM action="http://servername:7777/intermedia/schemaname/mediaput/dbpackage.function" method="post" enctype="multipart/form-data" id="form1" name="form1">
<textarea name="address1" id="add1" class="address_det"></textarea><br />
<textarea name="address2" id="add2" class="address_det"></textarea><br />
<textarea name="address3" id="add3" class="address_det"></textarea><br />
<textarea name="address4" id="add4" class="address_det"></textarea><br />
<textarea name="address5" id="add5" class="address_det"></textarea><br />
<textarea name="address6" id="add6" class="address_det"></textarea><br />
<textarea name="address7" id="add7" class="address_det"></textarea><br />
<textarea name="comments" id="comments" class="address_det"></textarea><br />
<input type="Submit" value="Save" id=Submit1 name=Submit1 class="butt"><br />
<input type="reset" value="Clear" id=reset1 name=reset1 class="butt">
</FORM>

might be useless to you but it's one example.
If/when i find out more i'll let you know..

cheers,
f


__________________
:::franz:::
Reply With Quote
  #4 (permalink)  
Old 01-29-03, 00:24
senthil5_kumar senthil5_kumar is offline
Registered User
 
Join Date: Jan 2003
Posts: 18
Hi,
U should have websever like JavaWebserver to access ur pages.To access the database u can use servlets or some other middleware.
The servelts will connect to database run ur quries on database and get the results.with the results, servlets can generate a html page dynamically and throw back to the webrowser. u can also insert records into database by passing ur information to servlets.

Regards,
Senthil
Reply With Quote
  #5 (permalink)  
Old 12-09-03, 16:01
joebednarz joebednarz is offline
PC Load Letter???
 
Join Date: Dec 2003
Location: Oklahoma, USA
Posts: 351
Probably the easiest way is to use Apache that comes with Oracle. Part of Apache that is included with Oracle is a module called modplsql. This is a direct connector into the database.

There are also a packages within Oracle for returning information to this module: OWA, OWA_UTIL, HTP, and HTF. They all have functions that return data to the browser via Apache. In your PL/SQL package, you would have some code that looks like this:

htp.print( '<html><head><title>My PL/SQL Page</title></head></html>' );

There are procedure calls for form elements as well...

Joe
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On