Forms and Input Text Fields
This slide shows how to use HTML form to send the user input from a single-line input text field to a server for processing.
If you type a region, Central, East, or West, in the text field below and click the “List” button, the browser will call the following scripts:
6.html ⇒ List.cgi ⇒ List.pl ⇒ List.java
and list the corresponding stores in that region.
An empty region will list all stores.
03 | < input type = "text" name = "region" /> |
04 | < input type = "submit" name = "act" value = "List" /> |
05 | < input type = "submit" name = "act" value = "HTML source" /> |
06 | < input type = "submit" name = "act" value = "CGI source" /> |
07 | < input type = "submit" name = "act" value = "Perl source" /> |
08 | < input type = "submit" name = "act" value = "Java source" /> |
09 | < input type = "submit" name = "act" value = "Help" /> |
10 | < input type = "reset" value = "Reset" /> |
|
|
|
The button “List” will activate the following code,
List.cgi
, which is used to set the web environment for the Oracle database:
~/public_html/cgi-bin/jdbc/List.cgi
|
3 | CLASSPATH=.: /usr/lib/oracle/23/client64 |
4 | CLASSPATH=$CLASSPATH: /usr/lib/oracle/23/client64/lib/ojdbc8 .jar |
5 | CLASSPATH=$CLASSPATH: /usr/lib/oracle/23/client64/lib/ottclasses .zip |
|
The following Perl script is mainly used to process the web inputs.
It could be skipped by letting the shell and Java scripts handle the web inputs.
However, Perl is known for its strong string processing, which is greatly needed for web processing, so the Perl script is kept to do most part of string processing.
~/public_html/cgi-bin/jdbc/List.pl
|
04 | $act = $query ->param( 'act' ); |
05 | $region = $query ->param( 'region' ); |
07 | if ( $act eq "List" ) { |
09 | print ( "Content-type: text/html\n\n" ); |
17 | <body text= "#000000" vLink= "#3366CC" link = "#3366CC" bgColor= "#ffffff" |
20 | <font color= "#3366CC" > |
24 | $region =~ s/^\s*(\S*)\s*$/ $1 /; |
26 | $region =~ s/;|>|>>|<|\*|\?|\&|\|//g; |
28 | $cmd = "/usr/bin/java -Djava.security.egd=file:/dev/./urandom List '" ; |
29 | $cmd .= $region . "'" ; |
30 | print ( $cmd ); system ( $cmd ); |
39 | elsif ( $act eq "HTML source" ) { |
41 | print ( "Content-type: text/plain\n\n" ); |
42 | $cmd = "/usr/bin/lynx -dump -source " . $ENV {HTTP_REFERER}; |
43 | $cmd .= "; echo \n\n\n\n" ; |
46 | elsif ( $act eq "CGI source" ) { |
47 | print ( "Content-type: text/plain\n\n" ); |
48 | system ( "/bin/cat List.cgi; echo \n\n\n\n" ); |
50 | elsif ( $act eq "Perl source" ) { |
51 | print ( "Content-type: text/plain\n\n" ); |
52 | system ( "/bin/cat List.pl; echo \n\n\n\n" ); |
54 | elsif ( $act eq "Java source" ) { |
55 | print ( "Content-type: text/plain\n\n" ); |
56 | system ( "/bin/cat List.java; echo \n\n\n\n" ); |
58 | elsif ( $act eq "Help" ) { |
59 | print ( "Content-type: text/html\n\n" ); |
60 | system ( "/bin/cat Help.html" ); |
63 | print ( "Content-type: text/html\n\n" ); |
64 | print ( "No such option: <em>$act</em>" ); |
|
The following JDBC script accesses the database and retrieves the stores.
~/public_html/cgi-bin/jdbc/List.java
|
01 | /******************************************************************* |
03 | This program shows how to list the stores in the |
06 | To use this program, you need to create a table |
07 | stores by using the following commands: |
09 | SQL> create table stores ( |
10 | 2 store_key INTEGER PRIMARY KEY, |
11 | 3 city VARCHAR(32) NOT NULL, |
12 | 4 region VARCHAR(16) NOT NULL ); |
15 | *******************************************************************/ |
21 | import oracle.jdbc.pool.OracleDataSource; |
24 | public static void main( String args[ ] ) throws SQLException { |
25 | String user = "C##user_id" ; |
26 | String password = "password" ; |
27 | String database = "20.185.147.112:1521/xe" ; |
30 | OracleDataSource ods = new OracleDataSource( ); |
31 | ods.setURL ( "jdbc:oracle:thin:@" + database ); |
33 | ods.setPassword( password ); |
34 | Connection conn = ods.getConnection( ); |
38 | Statement stmt = conn.createStatement( ); |
39 | String query = "select store_key, city, region from stores " ; |
40 | query += "where region like '%" + args[ 0 ].trim( ) + "%'" ; |
41 | System.out.println( query + "<b>" ); |
42 | ResultSet rset = stmt.executeQuery( query ); |
45 | while ( rset.next( ) ) { |
46 | System.out.print( rset.getString( 1 ) + ", " + rset.getString( 2 ) ); |
47 | System.out.print( ", " + rset.getString( 3 ) ); |
53 | catch ( SQLException ex ) { |
54 | System.out.println( ex ); |
|