mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
14 lines
240 B
C++
14 lines
240 B
C++
#include <Core/Core.h>
|
|
#include <Sql/Sql.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
Value v1 = 10;
|
|
Value v2 = "Daniel";
|
|
SqlInsert q = Insert("table")
|
|
("col1", v1)
|
|
("col2", v2);
|
|
LOG(((SqlStatement) q).Get(ORACLE));
|
|
}
|