/[H9]/trunk/tntnet/dynamic/adm_customer_delete.ecpp
ViewVC logotype

Contents of /trunk/tntnet/dynamic/adm_customer_delete.ecpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 126 - (show annotations) (download)
Sun Dec 2 20:26:43 2007 UTC (16 years, 5 months ago) by torben
File size: 605 byte(s)
Silenced compiler warnings

1 <%pre>
2 #include <tntdb/connect.h>
3 #include <tntdb/connection.h>
4 #include <tntdb/result.h>
5 #include <tntdb/row.h>
6 #include <sstream>
7 </%pre>
8
9 <%config>
10 dburl;
11 </%config>
12
13 <%session scope="global">
14 std::string userName;
15 </%session>
16
17
18 <%args>
19 int id;
20 </%args>
21
22 <{
23
24 if (userName.size() == 0)
25 {
26 reply.setHeader("Location", "index");
27 return HTTP_MOVED_TEMPORARILY;
28 }
29
30 tntdb::Connection conn = tntdb::connect(dburl);
31
32 std::stringstream query;
33 query << "DELETE FROM customer WHERE id = " << id;
34
35 conn.execute(query.str());
36 reply.setHeader("Location", "adm_customer_list");
37 return HTTP_MOVED_TEMPORARILY;
38
39
40 }>

  ViewVC Help
Powered by ViewVC 1.1.20