|
|
Home » U++ Library support » U++ Library : Other (not classified elsewhere) » Web CGI
Web CGI [message #27025] |
Mon, 21 June 2010 21:04  |
ikeuchi
Messages: 1 Registered: August 2007
|
Junior Member |
|
|
Hi everyone.
I wrote this topic only to demonstrate how easy is to develop WEB CGI with U++.
The code is simple and I really needed it for a project.
Best Regards!
#include <Core/Core.h>
#include <Oracle/Oracle8.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
Oracle8 oracle;
String raw_get = getenv("QUERY_STRING");
String id_code;
id_code = raw_get.Mid(3, 12);
oracle.Open("user/pwd@server:1521/sid", false, NULL);
Sql sql(oracle);
sql.Execute("SELECT ADD_TEXT FROM SOMETABLE WHERE ADD_ENTITY = 'TASK' AND ADD_CODE = '" + id_code + "'");
sql.Fetch();
Cout() << "Content-type: text/html\n\n";
Cout() << "<html><head></head><body>";
Cout() << "<pre style=\"font-family:verdana;size:10\">" + sql[0].ToString() + "</pre>";
Cout() << "</body></html>";
}
|
|
|
|
|
|
|
Goto Forum:
Current Time: Sat Apr 26 14:36:20 CEST 2025
Total time taken to generate the page: 0.02781 seconds
|
|
|