1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
|
//
// // Copyright (C) 2004-2007 Maciej Sobczak, Stephen Hutton
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
//
#include "soci/soci.h"
#include "soci/oracle/soci-oracle.h"
#include "test-assert.h"
#include "test-context.h"
#include "test-myint.h"
#include <iomanip>
#include <iostream>
#include <string>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <catch.hpp>
using namespace soci;
using namespace soci::tests;
std::string connectString;
backend_factory const &backEnd = *soci::factory_oracle();
// Helpers for creating tables for different tests.
struct table_creator_one : public table_creator_base
{
table_creator_one(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(id number(10,0), val number(8,0), c char, "
"str varchar2(20), sh number, ll number, ul number, d number, "
"num76 numeric(7,6), "
"tm date, i1 number, i2 number, i3 number, name varchar2(20))";
}
};
struct table_creator_two : public table_creator_base
{
table_creator_two(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(num_float number, num_int numeric(4,0),"
" name varchar2(20), sometime date, chr char)";
}
};
struct table_creator_three : public table_creator_base
{
table_creator_three(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(name varchar2(100) not null, "
"phone varchar2(15))";
}
};
struct table_creator_four : public table_creator_base
{
table_creator_four(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val number)";
}
};
struct table_creator_for_xml : table_creator_base
{
table_creator_for_xml(soci::session& sql)
: table_creator_base(sql)
{
sql << "create table soci_test(id integer, x xmltype)";
}
};
struct table_creator_for_clob : table_creator_base
{
table_creator_for_clob(soci::session& sql)
: table_creator_base(sql)
{
sql << "create table soci_test(id integer, s clob)";
}
};
struct table_creator_for_blob : public tests::table_creator_base
{
table_creator_for_blob(soci::session &sql) : tests::table_creator_base(sql)
{
sql << "create table soci_test(id integer, b blob)";
}
};
struct table_creator_for_timestamp : public tests::table_creator_base
{
table_creator_for_timestamp(soci::session &sql) : tests::table_creator_base(sql)
{
sql << "create table soci_test(id integer, t timestamp (6))";
}
};
// Extra tests for date/time
TEST_CASE("Oracle datetime", "[oracle][datetime]")
{
soci::session sql(backEnd, connectString);
{
std::time_t now = std::time(NULL);
std::tm t1, t2;
t2 = *std::localtime(&now);
sql << "select t from (select :t as t from dual)",
into(t1), use(t2);
CHECK(t1.tm_sec == t2.tm_sec);
CHECK(t1.tm_min == t2.tm_min);
CHECK(t1.tm_hour == t2.tm_hour);
CHECK(t1.tm_mday == t2.tm_mday);
CHECK(t1.tm_mon == t2.tm_mon);
CHECK(t1.tm_year == t2.tm_year);
CHECK(t1.tm_wday == t2.tm_wday);
CHECK(t1.tm_yday == t2.tm_yday);
CHECK(t1.tm_isdst == t2.tm_isdst);
// make sure the date is stored properly in Oracle
char buf[25];
strftime(buf, sizeof(buf), "%m-%d-%Y %H:%M:%S", &t2);
std::string t_out;
std::string format("MM-DD-YYYY HH24:MI:SS");
sql << "select to_char(t, :format) from (select :t as t from dual)",
into(t_out), use(format), use(t2);
CHECK(t_out == std::string(buf));
}
{
// date and time - before year 2000
std::time_t then = std::time(NULL) - 17*365*24*60*60;
std::tm t1, t2;
t2 = *std::localtime(&then);
sql << "select t from (select :t as t from dual)",
into(t1), use(t2);
CHECK(t1.tm_sec == t2.tm_sec);
CHECK(t1.tm_min == t2.tm_min);
CHECK(t1.tm_hour == t2.tm_hour);
CHECK(t1.tm_mday == t2.tm_mday);
CHECK(t1.tm_mon == t2.tm_mon);
CHECK(t1.tm_year == t2.tm_year);
CHECK(t1.tm_wday == t2.tm_wday);
CHECK(t1.tm_yday == t2.tm_yday);
CHECK(t1.tm_isdst == t2.tm_isdst);
// make sure the date is stored properly in Oracle
char buf[25];
strftime(buf, sizeof(buf), "%m-%d-%Y %H:%M:%S", &t2);
std::string t_out;
std::string format("MM-DD-YYYY HH24:MI:SS");
sql << "select to_char(t, :format) from (select :t as t from dual)",
into(t_out), use(format), use(t2);
CHECK(t_out == std::string(buf));
}
{
// date and time - between years 1- 2201
soci::session sql(backEnd, connectString);
table_creator_for_timestamp tableCreator(sql);
for(int i = 100; i <= 2201; i = i + 50)
{
char t[10];
snprintf(t, sizeof(t), "%04d", i);
std::string date = std::string(t) + "-03-28 14:06:13";
std::tm t1 {}, t2 {}, t4 {};
std::istringstream is(date.c_str());
is.imbue(std::locale(setlocale(LC_ALL, nullptr)));
is >> std::get_time(&t2, "%Y-%m-%d %H:%M:%S");
REQUIRE(!is.fail());
std::tm t3 = t2;
sql << "select t from (select :t as t from dual)",
into(t1), use(t3);
char buf1[25];
char buf2[25];
strftime(buf1, sizeof(buf1), "%Y-%m-%d %H:%M:%S", &t1);
strftime(buf2, sizeof(buf2), "%Y-%m-%d %H:%M:%S", &t2);
CHECK(std::string(buf1) == std::string(buf2));
CHECK(t1.tm_sec == t2.tm_sec);
CHECK(t1.tm_min == t2.tm_min);
CHECK(t1.tm_hour == t2.tm_hour);
CHECK(t1.tm_mday == t2.tm_mday);
CHECK(t1.tm_mon == t2.tm_mon);
CHECK(t1.tm_year == t2.tm_year);
CHECK((1900 + t1.tm_year) == i);
sql << "insert into soci_test(id, t) values(:i, :t)", use(i), use(t3);
sql << "select t from soci_test where id = :i", use(i), into(t4);
CHECK(t4.tm_sec == t2.tm_sec);
CHECK(t4.tm_min == t2.tm_min);
CHECK(t4.tm_hour == t2.tm_hour);
CHECK(t4.tm_mday == t2.tm_mday);
CHECK(t4.tm_mon == t2.tm_mon);
CHECK(t4.tm_year == t2.tm_year);
CHECK((1900 + t4.tm_year) == i);
}
}
}
// explicit calls test
TEST_CASE("Oracle explicit calls", "[oracle]")
{
soci::session sql(backEnd, connectString);
statement st(sql);
st.alloc();
int i = 0;
st.exchange(into(i));
st.prepare("select 7 from dual");
st.define_and_bind();
st.execute(1);
CHECK(i == 7);
}
// DDL test
// nested statement test
// (the same syntax is used for output cursors in PL/SQL)
struct basic_table_creator : public table_creator_base
{
basic_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql <<
"create table soci_test ("
" id number(5) not null,"
" name varchar2(100),"
" code number(5)"
")";
}
};
TEST_CASE("Oracle nested statement", "[oracle][blob]")
{
soci::session sql(backEnd, connectString);
basic_table_creator tableCreator(sql);
int id;
std::string name;
{
statement st1 = (sql.prepare <<
"insert into soci_test (id, name) values (:id, :name)",
use(id), use(name));
id = 1; name = "John"; st1.execute(1);
id = 2; name = "Anna"; st1.execute(1);
id = 3; name = "Mike"; st1.execute(1);
}
statement stInner(sql);
statement stOuter = (sql.prepare <<
"select cursor(select name from soci_test order by id)"
" from soci_test where id = 1",
into(stInner));
stInner.exchange(into(name));
stOuter.execute();
stOuter.fetch();
std::vector<std::string> names;
while (stInner.fetch()) { names.push_back(name); }
REQUIRE(names.size() == 3);
CHECK(names[0] == "John");
CHECK(names[1] == "Anna");
CHECK(names[2] == "Mike");
}
// ROWID test
TEST_CASE("Oracle rowid", "[oracle][rowid]")
{
soci::session sql(backEnd, connectString);
basic_table_creator tableCreator(sql);
sql << "insert into soci_test(id, name) values(7, \'John\')";
rowid rid(sql);
sql << "select rowid from soci_test where id = 7", into(rid);
int id;
std::string name;
sql << "select id, name from soci_test where rowid = :rid",
into(id), into(name), use(rid);
CHECK(id == 7);
CHECK(name == "John");
}
// Stored procedures
class creator_base
{
public:
explicit creator_base(session& sql, std::string what = "procedure soci_test")
: msession(sql), what_{std::move(what)} { drop(); }
~creator_base() { drop();}
private:
void drop()
{
try { msession << "drop " + what_; } catch (soci_error&) {}
}
session& msession;
std::string const what_;
SOCI_NOT_COPYABLE(creator_base)
};
struct procedure_creator : creator_base
{
procedure_creator(soci::session & sql)
: creator_base(sql)
{
sql <<
"create or replace procedure soci_test(output out varchar2,"
"input in varchar2) as "
"begin output := input; end;";
}
};
TEST_CASE("Oracle stored procedure", "[oracle][stored-procedure]")
{
soci::session sql(backEnd, connectString);
procedure_creator procedure_creator(sql);
std::string in("my message");
std::string out;
statement st = (sql.prepare <<
"begin soci_test(:output, :input); end;",
use(out, "output"),
use(in, "input"));
st.execute(1);
CHECK(out == in);
// explicit procedure syntax
{
std::string in("my message2");
std::string out;
procedure proc = (sql.prepare <<
"soci_test(:output, :input)",
use(out, "output"), use(in, "input"));
proc.execute(1);
CHECK(out == in);
}
}
// bind into user-defined objects
struct string_holder
{
string_holder() {}
string_holder(const char* s) : s_(s) {}
string_holder(std::string s) : s_(s) {}
std::string get() const { return s_; }
private:
std::string s_;
};
namespace soci
{
template <>
struct type_conversion<string_holder>
{
typedef std::string base_type;
static void from_base(const std::string &s, indicator /* ind */,
string_holder &sh)
{
sh = string_holder(s);
}
static void to_base(const string_holder &sh, std::string &s, indicator &ind)
{
s = sh.get();
ind = i_ok;
}
};
}
struct in_out_procedure_creator : public creator_base
{
in_out_procedure_creator(soci::session & sql)
: creator_base(sql)
{
sql << "create or replace procedure soci_test(s in out varchar2)"
" as begin s := s || s; end;";
}
};
struct returns_null_procedure_creator : public creator_base
{
returns_null_procedure_creator(soci::session & sql)
: creator_base(sql)
{
sql << "create or replace procedure soci_test(s in out varchar2)"
" as begin s := NULL; end;";
}
};
TEST_CASE("Oracle user-defined objects", "[oracle][type_conversion]")
{
soci::session sql(backEnd, connectString);
{
basic_table_creator tableCreator(sql);
int id(1);
string_holder in("my string");
sql << "insert into soci_test(id, name) values(:id, :name)", use(id), use(in);
string_holder out;
sql << "select name from soci_test", into(out);
CHECK(out.get() == "my string");
row r;
sql << "select * from soci_test", into(r);
string_holder dynamicOut = r.get<string_holder>(1);
CHECK(dynamicOut.get() == "my string");
}
}
TEST_CASE("Oracle user-defined objects in/out", "[oracle][type_conversion]")
{
soci::session sql(backEnd, connectString);
// test procedure with user-defined type as in-out parameter
{
in_out_procedure_creator procedureCreator(sql);
std::string sh("test");
procedure proc = (sql.prepare << "soci_test(:s)", use(sh));
proc.execute(1);
CHECK(sh == "testtest");
}
// test procedure with user-defined type as in-out parameter
{
in_out_procedure_creator procedureCreator(sql);
string_holder sh("test");
procedure proc = (sql.prepare << "soci_test(:s)", use(sh));
proc.execute(1);
CHECK(sh.get() == "testtest");
}
}
TEST_CASE("Oracle null user-defined objects in/out", "[oracle][null][type_conversion]")
{
soci::session sql(backEnd, connectString);
// test procedure which returns null
returns_null_procedure_creator procedureCreator(sql);
string_holder sh;
indicator ind = i_ok;
procedure proc = (sql.prepare << "soci_test(:s)", use(sh, ind));
proc.execute(1);
CHECK(ind == i_null);
}
// test bulk insert features
TEST_CASE("Oracle bulk insert", "[oracle][insert][bulk]")
{
soci::session sql(backEnd, connectString);
basic_table_creator tableCreator(sql);
// verify exception is thrown if vectors of unequal size are passed in
{
std::vector<int> ids;
ids.push_back(1);
ids.push_back(2);
std::vector<int> codes;
codes.push_back(1);
try
{
sql << "insert into soci_test(id,code) values(:id,:code)",
use(ids), use(codes);
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
std::string const error = e.what();
CAPTURE(error);
CHECK(error.find("Bind variable size mismatch")
!= std::string::npos);
}
try
{
sql << "select from soci_test", into(ids), into(codes);
FAIL("expected exception not thrown");
}
catch (std::exception const &e)
{
std::string const error = e.what();
CAPTURE(error);
CHECK(error.find("Bind variable size mismatch")
!= std::string::npos);
}
}
// verify partial insert occurs when one of the records is bad
{
std::vector<int> ids;
ids.push_back(100);
ids.push_back(1000000); // too big for column
try
{
sql << "insert into soci_test (id) values(:id)", use(ids, "id");
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
std::string const error = e.what();
//TODO e could be made to tell which row(s) failed
CAPTURE(error);
CHECK(error.find("ORA-01438") != std::string::npos);
}
sql.commit();
int count(7);
sql << "select count(*) from soci_test", into(count);
CHECK(count == 1);
sql << "delete from soci_test";
}
// test insert
{
std::vector<int> ids;
for (int i = 0; i != 3; ++i)
{
ids.push_back(i+10);
}
statement st = (sql.prepare << "insert into soci_test(id) values(:id)",
use(ids));
st.execute(1);
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == 3);
}
//verify an exception is thrown if into vector is zero length
{
std::vector<int> ids;
CHECK_THROWS_AS((sql << "select id from soci_test", into(ids)), soci_error);
}
// verify an exception is thrown if use vector is zero length
{
std::vector<int> ids;
CHECK_THROWS_AS((sql << "insert into soci_test(id) values(:id)", use(ids)), soci_error);
}
// test "no data" condition
{
std::vector<indicator> inds(3);
std::vector<int> ids_out(3);
statement st = (sql.prepare << "select id from soci_test where 1=0",
into(ids_out, inds));
// false return value means "no data"
CHECK(st.execute(1) == false);
// that's it - nothing else is guaranteed
// and nothing else is to be tested here
}
// test NULL indicators
{
std::vector<int> ids(3);
sql << "select id from soci_test", into(ids);
std::vector<indicator> inds_in;
inds_in.push_back(i_ok);
inds_in.push_back(i_null);
inds_in.push_back(i_ok);
std::vector<int> new_codes;
new_codes.push_back(10);
new_codes.push_back(11);
new_codes.push_back(10);
sql << "update soci_test set code = :code where id = :id",
use(new_codes, inds_in), use(ids);
std::vector<indicator> inds_out(3);
std::vector<int> codes(3);
sql << "select code from soci_test", into(codes, inds_out);
REQUIRE(codes.size() == 3);
REQUIRE(inds_out.size() == 3);
CHECK(codes[0] == 10);
CHECK(codes[2] == 10);
CHECK(inds_out[0] == i_ok);
CHECK(inds_out[1] == i_null);
CHECK(inds_out[2] == i_ok);
}
// verify an exception is thrown if null is selected
// and no indicator was provided
{
std::string msg;
std::vector<int> intos(3);
try
{
sql << "select code from soci_test", into(intos);
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Null value fetched and no indicator defined." );
}
}
// test basic select
{
const size_t sz = 3;
std::vector<indicator> inds(sz);
std::vector<int> ids_out(sz);
statement st = (sql.prepare << "select id from soci_test",
into(ids_out, inds));
const bool gotData = st.execute(true);
CHECK(gotData);
REQUIRE(ids_out.size() == sz);
CHECK(ids_out[0] == 10);
CHECK(ids_out[2] == 12);
REQUIRE(inds.size() == 3);
CHECK(inds[0] == i_ok);
CHECK(inds[1] == i_ok);
CHECK(inds[2] == i_ok);
}
// verify execute(0)
{
std::vector<int> ids_out(2);
statement st = (sql.prepare << "select id from soci_test",
into(ids_out));
st.execute();
REQUIRE(ids_out.size() == 2);
bool gotData = st.fetch();
CHECK(gotData);
REQUIRE(ids_out.size() == 2);
CHECK(ids_out[0] == 10);
CHECK(ids_out[1] == 11);
gotData = st.fetch();
CHECK(gotData);
REQUIRE(ids_out.size() == 1);
CHECK(ids_out[0] == 12);
gotData = st.fetch();
CHECK(gotData == false);
}
// verify resizing happens if vector is larger
// than number of rows returned
{
std::vector<int> ids_out(4); // one too many
statement st2 = (sql.prepare << "select id from soci_test",
into(ids_out));
bool gotData = st2.execute(true);
CHECK(gotData);
REQUIRE(ids_out.size() == 3);
CHECK(ids_out[0] == 10);
CHECK(ids_out[2] == 12);
}
// verify resizing happens properly during fetch()
{
std::vector<int> more;
more.push_back(13);
more.push_back(14);
sql << "insert into soci_test(id) values(:id)", use(more);
std::vector<int> ids(2);
statement st3 = (sql.prepare << "select id from soci_test", into(ids));
bool gotData = st3.execute(true);
CHECK(gotData);
CHECK(ids[0] == 10);
CHECK(ids[1] == 11);
gotData = st3.fetch();
CHECK(gotData);
CHECK(ids[0] == 12);
CHECK(ids[1] == 13);
gotData = st3.fetch();
CHECK(gotData);
REQUIRE(ids.size() == 1);
CHECK(ids[0] == 14);
gotData = st3.fetch();
CHECK(gotData == false);
}
}
// more tests for bulk fetch
TEST_CASE("Oracle bulk fetch", "[oracle][fetch][bulk]")
{
soci::session sql(backEnd, connectString);
basic_table_creator tableCreator(sql);
std::vector<int> in;
for (int i = 1; i <= 10; ++i)
{
in.push_back(i);
}
sql << "insert into soci_test (id) values(:id)", use(in);
int count(0);
sql << "select count(*) from soci_test", into(count);
CHECK(count == 10);
// verify that the exception is thrown when trying to resize
// the output vector to the size that is bigger than that
// at the time of binding
{
std::vector<int> out(4);
statement st = (sql.prepare <<
"select id from soci_test", into(out));
st.execute();
st.fetch();
REQUIRE(out.size() == 4);
CHECK(out[0] == 1);
CHECK(out[1] == 2);
CHECK(out[2] == 3);
CHECK(out[3] == 4);
out.resize(5); // this should be detected as error
try
{
st.fetch();
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Increasing the size of the output vector is not supported.");
}
}
// on the other hand, downsizing is OK
{
std::vector<int> out(4);
statement st = (sql.prepare <<
"select id from soci_test", into(out));
st.execute();
st.fetch();
REQUIRE(out.size() == 4);
CHECK(out[0] == 1);
CHECK(out[1] == 2);
CHECK(out[2] == 3);
CHECK(out[3] == 4);
out.resize(3); // ok
st.fetch();
REQUIRE(out.size() == 3);
CHECK(out[0] == 5);
CHECK(out[1] == 6);
CHECK(out[2] == 7);
out.resize(4); // ok, not bigger than initially
st.fetch();
REQUIRE(out.size() == 3); // downsized because of end of data
CHECK(out[0] == 8);
CHECK(out[1] == 9);
CHECK(out[2] == 10);
bool gotData = st.fetch();
CHECK(gotData == false); // end of data
}
}
struct person
{
int id;
std::string firstName;
string_holder lastName; //test mapping of type_conversion-based types
std::string gender;
};
// Object-Relational Mapping
// Note: Use the values class as shown below in type_conversions
// to achieve object relational mapping. The values class should
// not be used directly in any other fashion.
namespace soci
{
// name-based conversion
template<> struct type_conversion<person>
{
typedef values base_type;
static void from_base(values const &v, indicator /* ind */, person &p)
{
// ignoring possibility that the whole object might be NULL
p.id = v.get<int>("ID");
p.firstName = v.get<std::string>("FIRST_NAME");
p.lastName = v.get<string_holder>("LAST_NAME");
p.gender = v.get<std::string>("GENDER", "unknown");
}
static void to_base(person const & p, values & v, indicator & ind)
{
v.set("ID", p.id);
v.set("FIRST_NAME", p.firstName);
v.set("LAST_NAME", p.lastName);
v.set("GENDER", p.gender, p.gender.empty() ? i_null : i_ok);
ind = i_ok;
}
};
}
struct person_table_creator : public table_creator_base
{
person_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(id numeric(5,0) NOT NULL,"
<< " last_name varchar2(20), first_name varchar2(20), "
" gender varchar2(10))";
}
};
struct times100_procedure_creator : public creator_base
{
times100_procedure_creator(soci::session & sql)
: creator_base(sql)
{
sql << "create or replace procedure soci_test(id in out number)"
" as begin id := id * 100; end;";
}
};
TEST_CASE("Oracle ORM", "[oracle][orm]")
{
soci::session sql(backEnd, connectString);
{
person_table_creator tableCreator(sql);
person p;
p.id = 1;
p.lastName = "Smith";
p.firstName = "Pat";
sql << "insert into soci_test(id, first_name, last_name, gender) "
<< "values(:ID, :FIRST_NAME, :LAST_NAME, :GENDER)", use(p);
// p should be unchanged
CHECK(p.id == 1);
CHECK(p.firstName == "Pat");
CHECK(p.lastName.get() == "Smith");
person p1;
sql << "select * from soci_test", into(p1);
CHECK(p1.id == 1);
CHECK(p1.firstName == "Pat");
CHECK(p1.lastName.get() == "Smith");
CHECK(p1.gender == "unknown");
p.firstName = "Patricia";
sql << "update soci_test set first_name = :FIRST_NAME "
"where id = :ID", use(p);
// p should be unchanged
CHECK(p.id == 1);
CHECK(p.firstName == "Patricia");
CHECK(p.lastName.get() == "Smith");
// Note: gender is now "unknown" because of the mapping, not ""
CHECK(p.gender == "unknown");
person p2;
sql << "select * from soci_test", into(p2);
CHECK(p2.id == 1);
CHECK(p2.firstName == "Patricia");
CHECK(p2.lastName.get() == "Smith");
// insert a second row so we can test fetching
person p3;
p3.id = 2;
p3.firstName = "Joe";
p3.lastName = "Smith";
sql << "insert into soci_test(id, first_name, last_name, gender) "
<< "values(:ID, :FIRST_NAME, :LAST_NAME, :GENDER)", use(p3);
person p4;
statement st = (sql.prepare << "select * from soci_test order by id",
into(p4));
st.execute();
bool gotData = st.fetch();
CHECK(gotData);
CHECK(p4.id == 1);
CHECK(p4.firstName == "Patricia");
gotData = st.fetch();
CHECK(gotData);
CHECK(p4.id == 2);
CHECK(p4.firstName == "Joe");
gotData = st.fetch();
CHECK(gotData == false);
}
// test with stored procedure
{
times100_procedure_creator procedureCreator(sql);
person p;
p.id = 1;
p.firstName = "Pat";
p.lastName = "Smith";
procedure proc = (sql.prepare << "soci_test(:ID)", use(p));
proc.execute(1);
CHECK(p.id == 100);
CHECK(p.firstName == "Pat");
CHECK(p.lastName.get() == "Smith");
}
// test with stored procedure which returns null
{
returns_null_procedure_creator procedureCreator(sql);
person p;
try
{
procedure proc = (sql.prepare << "soci_test(:FIRST_NAME)",
use(p));
proc.execute(1);
FAIL("expected exception not thrown");
}
catch (soci_error& e)
{
CHECK(e.get_error_message() ==
"Null value not allowed for this type");
}
procedure proc = (sql.prepare << "soci_test(:GENDER)",
use(p));
proc.execute(1);
CHECK(p.gender == "unknown");
}
}
// Experimental support for position based O/R Mapping
// additional type for position-based test
struct person2
{
int id;
std::string firstName;
std::string lastName;
std::string gender;
};
// additional type for stream-like test
struct person3 : person2 {};
namespace soci
{
// position-based conversion
template<> struct type_conversion<person2>
{
typedef values base_type;
static void from_base(values const &v, indicator /* ind */, person2 &p)
{
p.id = v.get<int>(0);
p.firstName = v.get<std::string>(1);
p.lastName = v.get<std::string>(2);
p.gender = v.get<std::string>(3, "whoknows");
}
// What about the "to" part? Does it make any sense to have it?
};
// stream-like conversion
template<> struct type_conversion<person3>
{
typedef values base_type;
static void from_base(values const &v, indicator /* ind */, person3 &p)
{
v >> p.id >> p.firstName >> p.lastName >> p.gender;
}
// TODO: The "to" part is certainly needed.
};
}
TEST_CASE("Oracle ORM by index", "[oracle][orm]")
{
soci::session sql(backEnd, connectString);
person_table_creator tableCreator(sql);
person p;
p.id = 1;
p.lastName = "Smith";
p.firstName = "Patricia";
sql << "insert into soci_test(id, first_name, last_name, gender) "
<< "values(:ID, :FIRST_NAME, :LAST_NAME, :GENDER)", use(p);
// test position-based conversion
person2 p3;
sql << "select id, first_name, last_name, gender from soci_test", into(p3);
CHECK(p3.id == 1);
CHECK(p3.firstName == "Patricia");
CHECK(p3.lastName == "Smith");
CHECK(p3.gender == "whoknows");
sql << "update soci_test set gender = 'F' where id = 1";
// additional test for stream-like conversion
person3 p4;
sql << "select id, first_name, last_name, gender from soci_test", into(p4);
CHECK(p4.id == 1);
CHECK(p4.firstName == "Patricia");
CHECK(p4.lastName == "Smith");
CHECK(p4.gender == "F");
}
//
// Backwards compatibility - support use of large strings with
// columns of type LONG
///
struct long_table_creator : public table_creator_base
{
long_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(l long)";
}
};
TEST_CASE("Oracle large strings as long", "[oracle][compatibility]")
{
soci::session sql(backEnd, connectString);
long_table_creator creator(sql);
const std::string::size_type max = 32768;
std::string in(max, 'X');
sql << "insert into soci_test values(:l)", use(in);
std::string out;
sql << "select l from soci_test", into(out);
CHECK(out.size() == max);
CHECK(in == out);
}
// test for modifiable and const use elements
TEST_CASE("Oracle const and modifiable parameters", "[oracle][use]")
{
soci::session sql(backEnd, connectString);
int i = 7;
sql << "begin "
"select 2 * :i into :i from dual; "
"end;", use(i);
CHECK(i == 14);
const int j = 7;
try
{
sql << "begin "
"select 2 * :i into :i from dual;"
" end;", use(j);
FAIL("expected exception not thrown");
}
catch (soci_error const & e)
{
CHECK(e.get_error_message() ==
"Attempted modification of const use element");
}
}
struct longlong_table_creator : table_creator_base
{
longlong_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val number(20))";
}
};
// test using the result of to_number() which uses the default NUMBER type,
// with precision == scale == 0, with rowset
TEST_CASE("Oracle to_number with rowset", "[oracle][rowset][to_number]")
{
soci::session sql(backEnd, connectString);
soci::rowset<soci::row>
rs = (sql.prepare << "select to_number('123456789012345') from dual");
double d = rs.begin()->get<double>(0);
ASSERT_EQUAL_EXACT(d, 123456789012345);
const double pi = 3.14;
rs = (sql.prepare << "select to_number(:t) from dual", use(pi));
d = rs.begin()->get<double>(0);
ASSERT_EQUAL_EXACT(d, 3.14);
}
// long long test
TEST_CASE("Oracle long long", "[oracle][longlong]")
{
{
soci::session sql(backEnd, connectString);
longlong_table_creator tableCreator(sql);
long long v1 = 1000000000000LL;
sql << "insert into soci_test(val) values(:val)", use(v1);
long long v2 = 0LL;
sql << "select val from soci_test", into(v2);
CHECK(v2 == v1);
}
// vector<long long>
{
soci::session sql(backEnd, connectString);
longlong_table_creator tableCreator(sql);
std::vector<long long> v1;
v1.push_back(1000000000000LL);
v1.push_back(1000000000001LL);
v1.push_back(1000000000002LL);
v1.push_back(1000000000003LL);
v1.push_back(1000000000004LL);
sql << "insert into soci_test(val) values(:val)", use(v1);
std::vector<long long> v2(10);
sql << "select val from soci_test order by val desc", into(v2);
REQUIRE(v2.size() == 5);
CHECK(v2[0] == 1000000000004LL);
CHECK(v2[1] == 1000000000003LL);
CHECK(v2[2] == 1000000000002LL);
CHECK(v2[3] == 1000000000001LL);
CHECK(v2[4] == 1000000000000LL);
}
}
// Test the DDL and metadata functionality
TEST_CASE("Oracle DDL with metadata", "[oracle][ddl]")
{
soci::session sql(backEnd, connectString);
// note: prepare_column_descriptions expects l-value
std::string ddl_t1 = "DDL_T1";
std::string ddl_t2 = "DDL_T2";
std::string ddl_t3 = "DDL_T3";
// single-expression variant:
sql.create_table(ddl_t1).column("I", soci::dt_integer).column("J", soci::dt_integer);
// check whether this table was created:
bool ddl_t1_found = false;
bool ddl_t2_found = false;
bool ddl_t3_found = false;
std::string table_name;
soci::statement st = (sql.prepare_table_names(), into(table_name));
st.execute();
while (st.fetch())
{
if (table_name == ddl_t1) { ddl_t1_found = true; }
if (table_name == ddl_t2) { ddl_t2_found = true; }
if (table_name == ddl_t3) { ddl_t3_found = true; }
}
CHECK(ddl_t1_found);
CHECK(ddl_t2_found == false);
CHECK(ddl_t3_found == false);
// check whether ddl_t1 has the right structure:
bool i_found = false;
bool j_found = false;
bool other_found = false;
soci::column_info ci;
soci::statement st1 = (sql.prepare_column_descriptions(ddl_t1), into(ci));
st1.execute();
while (st1.fetch())
{
if (ci.name == "I")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable);
i_found = true;
}
else if (ci.name == "J")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable);
j_found = true;
}
else
{
other_found = true;
}
}
CHECK(i_found);
CHECK(j_found);
CHECK(other_found == false);
// two more tables:
// separately defined columns:
// (note: statement is executed when ddl object goes out of scope)
{
soci::ddl_type ddl = sql.create_table(ddl_t2);
ddl.column("I", soci::dt_integer);
ddl.column("J", soci::dt_integer);
ddl.column("K", soci::dt_integer)("not null");
ddl.primary_key("t2_pk", "J");
}
sql.add_column(ddl_t1, "K", soci::dt_integer);
sql.add_column(ddl_t1, "BIG", soci::dt_string, 0); // "unlimited" length -> CLOB
sql.drop_column(ddl_t1, "I");
// or with constraint as in t2:
sql.add_column(ddl_t2, "M", soci::dt_integer)("not null");
// third table with a foreign key to the second one
{
soci::ddl_type ddl = sql.create_table(ddl_t3);
ddl.column("X", soci::dt_integer);
ddl.column("Y", soci::dt_integer);
ddl.foreign_key("t3_fk", "X", ddl_t2, "J");
}
// check if all tables were created:
ddl_t1_found = false;
ddl_t2_found = false;
ddl_t3_found = false;
soci::statement st2 = (sql.prepare_table_names(), into(table_name));
st2.execute();
while (st2.fetch())
{
if (table_name == ddl_t1) { ddl_t1_found = true; }
if (table_name == ddl_t2) { ddl_t2_found = true; }
if (table_name == ddl_t3) { ddl_t3_found = true; }
}
CHECK(ddl_t1_found);
CHECK(ddl_t2_found);
CHECK(ddl_t3_found);
// check if ddl_t1 has the right structure (it was altered):
i_found = false;
j_found = false;
bool k_found = false;
bool big_found = false;
other_found = false;
soci::statement st3 = (sql.prepare_column_descriptions(ddl_t1), into(ci));
st3.execute();
while (st3.fetch())
{
if (ci.name == "J")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable);
j_found = true;
}
else if (ci.name == "K")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable);
k_found = true;
}
else if (ci.name == "BIG")
{
CHECK(ci.type == soci::dt_string);
CHECK(ci.precision == 0); // "unlimited" for strings
big_found = true;
}
else
{
other_found = true;
}
}
CHECK(i_found == false);
CHECK(j_found);
CHECK(k_found);
CHECK(big_found);
CHECK(other_found == false);
// check if ddl_t2 has the right structure:
i_found = false;
j_found = false;
k_found = false;
bool m_found = false;
other_found = false;
soci::statement st4 = (sql.prepare_column_descriptions(ddl_t2), into(ci));
st4.execute();
while (st4.fetch())
{
if (ci.name == "I")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable);
i_found = true;
}
else if (ci.name == "J")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable == false); // primary key
j_found = true;
}
else if (ci.name == "K")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable == false);
k_found = true;
}
else if (ci.name == "M")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.nullable == false);
m_found = true;
}
else
{
other_found = true;
}
}
CHECK(i_found);
CHECK(j_found);
CHECK(k_found);
CHECK(m_found);
CHECK(other_found == false);
sql.drop_table(ddl_t1);
sql.drop_table(ddl_t3); // note: this must be dropped before ddl_t2
sql.drop_table(ddl_t2);
// check if all tables were dropped:
ddl_t1_found = false;
ddl_t2_found = false;
ddl_t3_found = false;
st2 = (sql.prepare_table_names(), into(table_name));
st2.execute();
while (st2.fetch())
{
if (table_name == ddl_t1) { ddl_t1_found = true; }
if (table_name == ddl_t2) { ddl_t2_found = true; }
if (table_name == ddl_t3) { ddl_t3_found = true; }
}
CHECK(ddl_t1_found == false);
CHECK(ddl_t2_found == false);
CHECK(ddl_t3_found == false);
int i = -1;
sql << "select length(" + sql.empty_blob() + ") from dual", into(i);
CHECK(i == 0);
sql << "select " + sql.nvl() + "(1, 2) from dual", into(i);
CHECK(i == 1);
sql << "select " + sql.nvl() + "(NULL, 2) from dual", into(i);
CHECK(i == 2);
}
// Test the bulk iterators functionality
TEST_CASE("Bulk iterators", "[oracle][bulkiters]")
{
soci::session sql(backEnd, connectString);
sql << "create table t (i integer)";
// test bulk iterators with basic types
{
std::vector<int> v;
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
v.push_back(50);
std::size_t begin = 2;
std::size_t end = 5;
sql << "insert into t (i) values (:v)", soci::use(v, begin, end);
v.clear();
v.resize(20);
begin = 5;
end = 20;
sql << "select i from t", soci::into(v, begin, end);
CHECK(end == 8);
for (std::size_t i = 0; i != 5; ++i)
{
CHECK(v[i] == 0);
}
CHECK(v[5] == 30);
CHECK(v[6] == 40);
CHECK(v[7] == 50);
for (std::size_t i = end; i != 20; ++i)
{
CHECK(v[i] == 0);
}
}
sql << "delete from t";
// test bulk iterators with user types
{
std::vector<MyInt> v;
v.push_back(MyInt(10));
v.push_back(MyInt(20));
v.push_back(MyInt(30));
v.push_back(MyInt(40));
v.push_back(MyInt(50));
std::size_t begin = 2;
std::size_t end = 5;
sql << "insert into t (i) values (:v)", soci::use(v, begin, end);
v.clear();
for (std::size_t i = 0; i != 20; ++i)
{
v.push_back(MyInt(-1));
}
begin = 5;
end = 20;
sql << "select i from t", soci::into(v, begin, end);
CHECK(end == 8);
for (std::size_t i = 0; i != 5; ++i)
{
CHECK(v[i].get() == -1);
}
CHECK(v[5].get() == 30);
CHECK(v[6].get() == 40);
CHECK(v[7].get() == 50);
for (std::size_t i = end; i != 20; ++i)
{
CHECK(v[i].get() == -1);
}
}
sql << "drop table t";
}
TEST_CASE ( "Oracle CLOB", "[oracle][clob]" )
{
soci::session sql ( backEnd, connectString );
// Use a non-ASCII string to test that CLOBs work when byte count differs
// from character count.
//
// Note that this requires some Unicode encoding to be used, e.g. UTF-8 by
// setting NLS_LANG=.AL32UTF8 in the environment.
std::string const test_utf8{"Привет système"};
table_creator_for_clob clob_table(sql);
long_string ls;
ls.value = test_utf8;
sql << "insert into soci_test(id, s) values(1, :s)", use(ls);
ls.value.clear();
sql << "select s from soci_test where id=1", into(ls);
CHECK(ls.value == test_utf8);
// RAII helper to create the function we use below.
struct soci_repeat : creator_base
{
explicit soci_repeat(session& sql)
: creator_base(sql, "function soci_repeat")
{
sql << R"(
create function soci_repeat(s in string, xCount in integer) return clob as
tmp clob;
begin
for i in 1..xCount loop tmp := tmp || s; end loop;
return tmp;
end;
)"
;
}
} soci_repeat_func(sql);
// Append a big number of Unicode chars to the CLOB to test that things
// work with CLOBs larger than a single chunk (which is ~8KiB by default).
//
// Note: Oracle 11 used in the CI tests doesn't seem to handle characters
// outside of the BMP correctly even if current Oracle versions have no
// problems with them, so don't use them here for now.
unsigned xCount = 10000;
sql << "select :s || soci_repeat('Я', :xCount) from dual",
use(ls), use(xCount), into(ls);
REQUIRE(ls.value.length() == test_utf8.length() + 2*xCount);
}
//
// Support for soci Common Tests
//
class test_context :public test_context_common
{
public:
test_context() = default;
std::string get_example_connection_string() const override
{
return "service=orcl user=scott password=tiger";
}
bool start_testing() override
{
if (!std::getenv("ORACLE_HOME"))
{
std::cerr << "ORACLE_HOME environment variable must be defined for Oracle tests.\n";
return false;
}
return test_context_base::start_testing();
}
std::string get_backend_name() const override
{
return "oracle";
}
table_creator_base* table_creator_1(soci::session& s) const override
{
return new table_creator_one(s);
}
table_creator_base* table_creator_2(soci::session& s) const override
{
return new table_creator_two(s);
}
table_creator_base* table_creator_3(soci::session& s) const override
{
return new table_creator_three(s);
}
table_creator_base* table_creator_4(soci::session& s) const override
{
return new table_creator_four(s);
}
table_creator_base* table_creator_clob(soci::session& s) const override
{
return new table_creator_for_clob(s);
}
table_creator_base* table_creator_blob(soci::session& s) const override
{
return new table_creator_for_blob(s);
}
table_creator_base* table_creator_xml(soci::session& s) const override
{
return new table_creator_for_xml(s);
}
std::string to_xml(std::string const& x) const override
{
// We can't apply xmltype() to null values as this appears to parse
// empty string as XML -- and failing.
return "case when " + x + " is not null then xmltype(" + x + ") else null end";
}
std::string from_xml(std::string const& x) const override
{
// Notice that using just x.getCLOBVal() doesn't work, only
// table.x.getCLOBVal() or (x).getCLOBVal(), as used here, does.
return "(" + x + ").getCLOBVal()";
}
bool has_real_xml_support() const override
{
return true;
}
bool treats_empty_strings_as_null() const override
{
return true;
}
std::string to_date_time(std::string const &datdt_string) const override
{
return "to_date('" + datdt_string + "', 'YYYY-MM-DD HH24:MI:SS')";
}
std::string sql_length(std::string const& s) const override
{
// Oracle treats empty strings as NULLs, but we want to return the
// length of 0 for them for consistency with the other backends, so use
// nvl() explicitly to achieve this.
return "nvl(length(" + s + "), 0)";
}
};
test_context tc_oracle;
|