/[SQLSession]/trunk/share/web/templates/sql.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/share/web/templates/sql.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14 - (show annotations)
Sun Dec 3 13:45:00 2006 UTC (17 years, 4 months ago) by dpavlin
File MIME type: text/html
File size: 1116 byte(s)
added save query
1 <%args>
2 $page => 1
3 $sth => undef
4 </%args>
5 <%init>
6
7 my $action = Jifty->web->new_action(
8 class => 'DoSQL',
9 moniker => 'execute_sql',
10 );
11
12 my $result = Jifty->web->response->result('execute_sql');
13 $sth = $result->content('sth') if $result and !defined $sth;
14
15 </%init>
16
17 <&| /_elements/wrapper, title => "Try out SQL query" &>
18 <% Jifty->web->form->start() %>
19 <% $action->form_field('sql_query') %>
20 <% $action->form_field('database') %>
21 <% Jifty->web->form->submit( label => 'Try it!' ) %>
22
23 % if ( defined($sth) ) {
24
25 <hr/>
26
27 <table cellpadding="3" cellspacing="0" border="1">
28
29 <tr>
30 % foreach my $col ( @{ $sth->{'NAME'} } ) {
31 <th><% $col %></th>
32 % }
33 </tr>
34
35 % while ( my @row = $sth->fetchrow_array() ) {
36 <tr>
37 % foreach my $v ( @row ) {
38 <td><% defined($v) ? $v : 'NULL' %></td>
39 % }
40 </tr>
41 % }
42
43 </table>
44
45 <hr/>
46
47 <%perl>
48 my $save = Jifty->web->new_action(
49 class => 'CreatePage',
50 arguments => {
51 sql_query => $action->form_field('sql_query'),
52 on_database => $action->form_field('database'),
53 }
54 );
55
56 </%perl>
57
58 <% $save->form_field('name') %>
59 <% $save->button( label => 'Save' ) %>
60
61 % }
62
63 <% Jifty->web->form->end() %>
64 </&>
65

  ViewVC Help
Powered by ViewVC 1.1.26