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 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896
|
unit MySQLResultSet;
interface
uses
Windows, Messages, SysUtils, Classes, Contnrs, Controls,
TntExtCtrls, TntComCtrls, TntClasses, TntStdCtrls, SyncObjs,
myx_public_interface, myx_util_public_interface, gnugettext, auxfuncs, MyxError,
MySQLConnection, VirtualTrees, Graphics, StrUtils,
TextSearch, UniCodeEditor;
type
TMySQLRS = class;
TExecuteQueryThread = class;
IMySQLRSControlInterface = interface(IUnknown)
['{B46142F1-743F-4BB2-9A00-20C7D485D7AA}']
procedure ClearValues;
function GetMySQLRS: TMySQLRS;
procedure SetMySQLRS(MySQLRS: TMySQLRS);
function GetControl: TObject;
procedure DoCurrentRowChanged;
procedure DoEditStateChanged;
procedure DoStatusCaptionChanged;
procedure DoMessagesChanged;
property MySQLRS: TMySQLRS read GetMySQLRS write SetMySQLRS;
property Control: TObject read GetControl;
end;
TConfirmEvent = function(Sender: TObject; Msg: WideString): Boolean of object;
TResultsetEvent = function(Sender: TObject): TMySQLRS of object;
PCommandEntry = ^TCommandEntry;
TCommandEntry = record
SQL: WideString;
Caret: TPoint;
SelectionStart: TPoint;
SelectionEnd: TPoint;
end;
// A list of commands with a scrollable pointer to a current command.
TCommandList = class(TObject)
private
FCommands: TList;
FCurrent: Integer;
function GetCurrent: PCommandEntry;
protected
procedure AddEntry(const SQL: WideString; const Caret, BB, BE: TPoint);
public
constructor Create; virtual;
destructor Destroy; override;
function Back: PCommandEntry;
procedure Clear;
function HasBack: Boolean;
function HasNext: Boolean;
function Next: PCommandEntry;
function MakeTOC(const SQL: WideString; const Caret, BB, BE: TPoint): PCommandEntry;
property Current: PCommandEntry read GetCurrent;
end;
TMySQLRS = class(TObject)
constructor Create;
destructor Destroy; override;
procedure ConnectControl(Control: IMySQLRSControlInterface);
procedure DisconnectControl(Control: IMySQLRSControlInterface);
procedure ExecuteQuery(Sql: WideString = '');
procedure Refresh;
procedure FreeResultSet;
procedure DoCurrentRowChanged(Sender: IMySQLRSControlInterface; CurrentRow: Integer);
procedure DoDynamicParamsChanged;
procedure DoEditStateChanged;
procedure DoStatusCaptionChanged;
procedure UpdateDynamicParams;
procedure DoDisplaySearch(ShowReplacePage: Boolean = False);
procedure GotoFirstRow;
procedure GotoLastRow;
procedure DoEdit;
procedure DoApplyChanges;
procedure DoDiscardChanges;
procedure DoMessagesChanged;
procedure AddRSMessage(Msg: WideString; MsgType: MYX_QUERY_ERROR_LEVEL;
MsgNr: Integer);
procedure ClearRSMessages;
procedure ConnectRS(RS: TMySQLRS);
procedure DisconnectRS(RS: TMySQLRS);
private
FConnectedControls: TInterfaceList;
FConnectedResultsets: TList;
FExecuteQueryThread: TExecuteQueryThread;
FMySQLConn: TMySQLConn;
FSQL: Widestring;
FCommandList: TCommandList;
FStatusCaption: WideString;
FEdited: Boolean;
FActive: Boolean;
FParentRS: TMySQLRS;
FCurrentRow: Integer;
FOnParamChange: TNotifyEvent;
FOnQueryExecute: TNotifyEvent;
FOnQueryExecuted: TNotifyEvent;
FOnQuerySuccess: TNotifyEvent;
FOnQueryStopped: TNotifyEvent;
FOnQueryError: TNotifyEvent;
FOnConfirmDeletion: TConfirmEvent;
FStopQuery: Boolean;
FQueryExecuting: Boolean;
FCreateNextRSForMultipleRSQuery: TResultsetEvent;
FRemoveRSForMultipleRSQuery: TNotifyEvent;
FShowRSForMultipleRSQuery: TNotifyEvent;
FGlobalParams,
FLocalParams,
FDynamicParams: TTntStringList;
FSynchronizer: TMultiReadExclusiveWriteSynchronizer;
protected
function GetMySQLConn: TMySQLConn;
procedure SetMySQLConn(MySQLConn: TMySQLConn);
function GetActive: Boolean;
procedure SetActive(Active: Boolean);
procedure Open;
procedure Close;
function GetEdited: Boolean;
procedure SetEdited(Edited: Boolean);
function GetStatusCaption: WideString;
procedure SetStatusCaption(StatusCaption: WideString);
function GetParentRS: TMySQLRS;
procedure SetParentRS(ParentRS: TMySQLRS);
function GetRowCount: Integer;
procedure CheckAttributes;
function GetStopQuery: Boolean;
procedure SetStopQuery(StopQuery: Boolean);
function GetQueryExecuting: Boolean;
procedure SetQueryExecuting(QueryExecuting: Boolean);
function GetConnectedDetailRSCount: Integer;
function GetConnectedDetailRS(I: Integer): TMySQLRS;
function GetConnectedControlsCount: Integer;
function GetConnectedControls(I: Integer): IMySQLRSControlInterface;
function DoSearch(Sender: TObject; SearchText: WideString; ReplaceText: WideString;
SearchOptions: TTextSearchOptions): Integer;
public
ResultsetLock: TCriticalSection;
ResultSet: PMYX_RESULTSET;
ErrorMessages: TObjectList;
Editable,
EditingAllowed,
AtLeastOneRecord,
FirstRowSelected,
LastRowSelected: Boolean;
ErrorOccured: Boolean;
InsertedRows,
DeletedRows: Integer;
function AllowedToDiscard: Boolean;
procedure ForceStop;
property CommandList: TCommandList read FCommandList;
property MySQLConn: TMySQLConn read GetMySQLConn write SetMySQLConn default nil;
property Active: Boolean read GetActive write SetActive default False;
property SQL: Widestring read FSQL write FSQL;
property Edited: Boolean read GetEdited write SetEdited default False;
property StatusCaption: WideString read GetStatusCaption write SetStatusCaption;
property ParentRS: TMySQLRS read GetParentRS write SetParentRS;
property RowCount: Integer read GetRowCount;
property OnParamChange: TNotifyEvent read FOnParamChange write FOnParamChange;
property OnQueryExecute: TNotifyEvent read FOnQueryExecute write FOnQueryExecute;
property OnQueryExecuted: TNotifyEvent read FOnQueryExecuted write FOnQueryExecuted;
property OnQuerySuccess: TNotifyEvent read FOnQuerySuccess write FOnQuerySuccess;
property OnQueryStopped: TNotifyEvent read FOnQueryStopped write FOnQueryStopped;
property OnQueryError: TNotifyEvent read FOnQueryError write FOnQueryError;
property OnConfirmDeletion: TConfirmEvent read FOnConfirmDeletion write FOnConfirmDeletion;
property StopQuery: Boolean read GetStopQuery write SetStopQuery default False;
property QueryExecuting: Boolean read GetQueryExecuting write SetQueryExecuting default False;
property ConnectedDetailRSCount: Integer read GetConnectedDetailRSCount;
property ConnectedDetailRS[I: Integer]: TMySQLRS read GetConnectedDetailRS;
property CreateNextRSForMultipleRSQuery: TResultsetEvent read FCreateNextRSForMultipleRSQuery write FCreateNextRSForMultipleRSQuery;
property RemoveRSForMultipleRSQuery: TNotifyEvent read FRemoveRSForMultipleRSQuery write FRemoveRSForMultipleRSQuery;
property ShowRSForMultipleRSQuery: TNotifyEvent read FShowRSForMultipleRSQuery write FShowRSForMultipleRSQuery;
property ConnectedControlsCount: Integer read GetConnectedControlsCount;
property ConnectedControls[I: Integer]: IMySQLRSControlInterface read GetConnectedControls;
property GlobalParams: TTntStringList read FGlobalParams write FGlobalParams;
property LocalParams: TTntStringList read FLocalParams write FLocalParams;
property DynamicParams: TTntStringList read FDynamicParams write FDynamicParams;
end;
TExecuteQueryThread = class(TThread)
private
ThreadPMySQL: Pointer;
FErrorMessage: WideString;
FNeedCleanup: Boolean;
FResultset: TMySQLRS;
FQuery: WideString;
FCurrentRowCount: Longint;
FPreviousRowCount: Longint;
FRawResultset: PMYX_RESULTSET;
FAffectedRows: Int64;
protected
procedure CancelQuery;
procedure Execute; override;
procedure CreateNextRSForMultipleRSQuery;
procedure RemoveRSForMultipleRSQuery;
procedure ShowRSForMultipleRSQuery;
public
constructor Create(MySQLRS: TMySQLRS);
destructor Destroy; override;
procedure BuildGrid;
procedure QueryExecuted;
procedure FetchMySQLMessages;
procedure QuerySuccess;
procedure QueryStopped;
procedure QueryError;
procedure ShowErrorMessage;
end;
TRSError = class(TObject)
private
FMessage: WideString;
FMessageType: MYX_QUERY_ERROR_LEVEL;
FMessageNumber: Integer;
public
constructor Create(Msg: WideString; MsgType: MYX_QUERY_ERROR_LEVEL; MsgNr: Integer);
property Msg: WideString read FMessage;
property MsgNr: Integer read FMessageNumber;
property MsgType: MYX_QUERY_ERROR_LEVEL read FMessageType;
end;
TRSFieldValue = record
Value: PAnsiChar;
Length: Integer;
BinaryData: Boolean;
IsNull: Boolean;
end;
function progress_row_fetch(current_row_count: Longint; previous_row_count: Longint; result_set: PMYX_RESULTSET; user_data: Pointer):Integer; cdecl;
procedure resultset_realloc_before(user_data: Pointer); cdecl;
procedure resultset_realloc_after(user_data: Pointer); cdecl;
//----------------------------------------------------------------------------------------------------------------------
implementation
uses
MySQLResultSetControls, ApplicationDataModule,
Forms, DateUtils;
type
// A separate thread only to cancel queries.
TCancelThread = class(TThread)
private
FSourceConnection: TMySQLConn;
FTarget: Pointer;
protected
procedure Execute; override;
public
constructor Create(Source: TMySQLConn; Target: Pointer); reintroduce;
end;
TMemoryStatusEx = record
dwLength: DWORD;
dwMemoryLoad: DWORD;
ullTotalPhys: Int64;
ullAvailPhys: Int64;
ullTotalPageFile: Int64;
ullAvailPageFile: Int64;
ullTotalVirtual: Int64;
ullAvailVirtual: Int64;
ullAvailExtendedVirtual: Int64;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure GlobalMemoryStatusEx(var lpBuffer: TMemoryStatusEx); stdcall; external 'Kernel32.dll' name 'GlobalMemoryStatusEx';
function GetMemoryLoad: Integer;
// Returns the current memory load of the system in % (0 .. 100).
var
Status: TMemoryStatusEx;
begin
ZeroMemory(@Status, SizeOf(Status));
Status.dwLength := SizeOf(Status);
GlobalMemoryStatusEx(Status);
Result := Status.dwMemoryLoad;
end;
//----------------- TCancelThread --------------------------------------------------------------------------------------
constructor TCancelThread.Create(Source: TMySQLConn; Target: Pointer);
begin
FSourceConnection := Source;
FTarget := Target;
inherited Create(False);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TCancelThread.Execute;
// Used to cancel a running query. We clone the source connection and use this to kill the target query.
// If we cannot create a connection clone or the query cannot be killed then nothing further happens.
var
NewConnection: Pointer;
begin
if FSourceConnection.EmbeddedConnection then
NewConnection := myx_mysql_embedded_init()
else
NewConnection := myx_mysql_init();
if Assigned(NewConnection) and
(myx_connect_to_instance(FSourceConnection.UserConnection.get_record_pointer, NewConnection) = 0) then
begin
myx_kill_query(NewConnection, FTarget);
myx_mysql_close(NewConnection);
end;
end;
//----------------------------------------------------------------------------------------------------------------------
constructor TMySQLRS.Create;
begin
inherited;
ResultSet := nil;
FMySQLConn := nil;
FParentRS := nil;
FConnectedControls := TInterfaceList.Create;
FConnectedResultsets := TList.Create;
FCommandList := TCommandList.Create;
FCurrentRow := -1;
InsertedRows := 0;
DeletedRows := 0;
FGlobalParams := nil;
FLocalParams := TTntStringList.Create;
FDynamicParams := TTntStringList.Create;
ErrorMessages := TObjectList.Create;
ErrorOccured := False;
Editable := False;
EditingAllowed := False;
FEdited := False;
FSynchronizer := TMultiReadExclusiveWriteSynchronizer.Create;
FActive := False;
StopQuery := False;
FQueryExecuting := False;
ResultsetLock := TCriticalSection.Create;
end;
//----------------------------------------------------------------------------------------------------------------------
destructor TMySQLRS.Destroy;
var
I: Integer;
begin
// Disconnect from ParentRS
ParentRS := nil;
FreeResultSet;
// Disconnect controls.
for I := 0 to FConnectedControls.Count - 1 do
IMySQLRSControlInterface(FConnectedControls[0]).MySQLRS := nil;
ErrorMessages.Free;
FCommandList.Free;
FConnectedControls.Free;
FConnectedResultsets.Free;
FLocalParams.Free;
FDynamicParams.Free;
FSynchronizer.Free;
ResultsetLock.Free;
inherited;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.ConnectControl(Control: IMySQLRSControlInterface);
begin
if FConnectedControls.IndexOf(Control) = -1 then
FConnectedControls.Add(Control);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DisconnectControl(Control: IMySQLRSControlInterface);
begin
FConnectedControls.Remove(Control);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.ForceStop;
// Kills the current SQL execution thread if there is one. This is usually only necessary if the thread does not
// stop by regular means (e.g. hangs on the server).
var
StartTime: TTime;
begin
if FQueryExecuting and Assigned(FExecuteQueryThread) then
begin
FExecuteQueryThread.Terminate;
StartTime := Now;
Screen.Cursor := crHourGlass;
try
while FQueryExecuting and (SecondsBetween(StartTime, Now) < 2) do
begin
Sleep(100);
Application.ProcessMessages;
end;
// If the query is still running kill the thread.
if FQueryExecuting then
begin
TerminateThread(FExecuteQueryThread.Handle, 0);
// Make sure visual states and all flags are reset to indicate the query is gone.
FExecuteQueryThread.QueryError;
FExecuteQueryThread.QueryExecuted;
FreeAndNil(FExecuteQueryThread);
end;
finally
Screen.Cursor := crDefault;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.FreeResultSet;
var
I: Integer;
begin
for I := 0 to FConnectedControls.Count-1 do
IMySQLRSControlInterface(FConnectedControls[I]).ClearValues;
if Assigned(ResultSet) then
myx_query_free_resultset(ResultSet);
InsertedRows := 0;
DeletedRows := 0;
ResultSet := nil;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetMySQLConn: TMySQLConn;
begin
Result := FMySQLConn;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetMySQLConn(MySQLConn: TMySQLConn);
begin
FMySQLConn := MySQLConn;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.AllowedToDiscard: Boolean;
begin
Result := not FEdited or (ShowModalDialog(_('Unapplied Changes'),
_('You have made changes to the resultset that have not been applied yet. Do you want to discard the changes?'),
myx_mtConfirmation, _('Discard') + #13#10 + _('Abort')) = 1);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.ExecuteQuery(Sql: WideString);
begin
FSQL := Trim(Sql);
Refresh;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.Refresh;
begin
if FSQL = '' then
begin
ShowModalDialog(_('No SQL Command'),
_('You tried to execute an empty string. Please type an SQL command into the SQL edit field and execute again.'),
myx_mtError, _('Ok'));
Exit;
end;
if not AllowedToDiscard then
Exit;
if FMySQLConn.Ping <> 0 then
FMySQLConn.Reconnect;
Edited := False;
FreeResultSet;
ClearRSMessages;
EditingAllowed := False;
StopQuery := False;
QueryExecuting := True;
if(Assigned(FOnQueryExecute))then
FOnQueryExecute(self);
try
FExecuteQueryThread := TExecuteQueryThread.Create(self);
try
// Thread will be freed after execution.
FExecuteQueryThread.FreeOnTerminate := True;
FExecuteQueryThread.Priority := tpIdle;
FExecuteQueryThread.Resume;
except
FreeAndNil(FExecuteQueryThread);
end;
except
on x: Exception do
begin
QueryExecuting := False;
if Assigned(FOnQueryError) then
FOnQueryError(self);
if Assigned(FOnQueryExecuted) then
FOnQueryExecuted(self);
raise;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetActive(Active: Boolean);
begin
if(Active)then
Open
else
Close;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetActive: Boolean;
begin
Result := FActive;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.Open;
begin
FActive := True;
ExecuteQuery;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.Close;
begin
FreeResultSet;
FActive := False;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetEdited: Boolean;
begin
Result := FEdited;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetEdited(Edited: Boolean);
begin
if(FEdited<>Edited)then
begin
FEdited := Edited;
DoEditStateChanged;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.ConnectRS(RS: TMySQLRS);
begin
if(FConnectedResultsets.IndexOf(RS)=-1)then
FConnectedResultsets.Add(RS);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DisconnectRS(RS: TMySQLRS);
begin
if(FConnectedResultsets.IndexOf(RS)<>-1)then
FConnectedResultsets.Delete(FConnectedResultsets.IndexOf(RS));
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetParentRS: TMySQLRS;
begin
Result := FParentRS;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetParentRS(ParentRS: TMySQLRS);
begin
if(FParentRS<>nil)and(FParentRS<>ParentRS)then
FParentRS.DisconnectRS(self);
FParentRS := ParentRS;
if(FParentRS<>nil)then
FParentRS.ConnectRS(self);
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetRowCount: Integer;
begin
if(ResultSet<>nil)then
Result := ResultSet.rows_num+InsertedRows-DeletedRows
else
Result := 0;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoCurrentRowChanged(Sender: IMySQLRSControlInterface;
CurrentRow: Integer);
var
i: Integer;
begin
CheckAttributes;
FirstRowSelected := False;
if(ResultSet<>nil)then
if(CurrentRow=0)or((ResultSet.rows_num+InsertedRows=0)and(CurrentRow=1))then
FirstRowSelected := True;
LastRowSelected := False;
if(ResultSet<>nil)then
if((CurrentRow>=ResultSet.rows_num-1+InsertedRows)or
(ResultSet.rows_num+InsertedRows=0))then
LastRowSelected := True;
FCurrentRow := CurrentRow;
UpdateDynamicParams;
for i := 0 to FConnectedControls.Count-1 do
if(FConnectedControls[i]<>Sender)then
IMySQLRSControlInterface(FConnectedControls[i]).DoCurrentRowChanged;
for i := 0 to FConnectedResultsets.Count-1 do
TMySQLRS(FConnectedResultsets[i]).DoDynamicParamsChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.UpdateDynamicParams;
var
I: Integer;
Row: PMYX_RS_ROW;
col: PMYX_RS_COLUMN;
Field: MYX_RS_FIELD;
Column: WideString;
Value: WideString;
begin
//Set Dynamic Parameters
FDynamicParams.Clear;
if (FCurrentRow>-1) and
(ResultSet<>nil) and
(FCurrentRow<Integer(ResultSet.rows_num))then
begin
Row := PMYX_RS_ROW(Integer(ResultSet.rows)+sizeof(MYX_RS_ROW)*FCurrentRow);
for I := 0 to ResultSet.columns_num-1 do
begin
col := PMYX_RS_COLUMN(Integer(ResultSet.columns)+(sizeof(MYX_RS_COLUMN)*I));
Column := Copy(Utf8Decode(col.name), 1, 28);
if Assigned(Row.fields) then
begin
Field := (PMYX_RS_FIELD(Integer(Row.fields) + (sizeof(MYX_RS_FIELD) * I)))^;
// Only take first 128 chars.
Value := Utf8Decode(Field.value);
case col.column_type of
MYX_RSCT_INTEGER,
MYX_RSCT_FLOAT,
MYX_RSCT_ENUM,
MYX_RSCT_SET,
MYX_RSCT_DECIMAL,
MYX_RSCT_BIT,
MYX_RSCT_TIMESTAMP,
MYX_RSCT_YEAR,
MYX_RSCT_NEWDATE,
MYX_RSCT_NEWDECIMAL:
FDynamicParams.Add(Column + '=' + Value);
MYX_RSCT_STRING,
MYX_RSCT_DATE,
MYX_RSCT_TIME,
MYX_RSCT_DATETIME,
MYX_RSCT_BLOB,
MYX_RSCT_TEXT:
FDynamicParams.Add(Column + '=''' + Value + '''');
end;
end
else
FDynamicParams.Add(Column + '=');
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoDynamicParamsChanged;
begin
if Assigned(ResultSet) then
begin
if Assigned(ResultSet.query) and (ResultSet.query.params_num > 0) and (FSQL <> '') and
(FParentRS.FDynamicParams.Count > 0) then
begin
ExecuteQuery(FSQL);
if(Assigned(FOnParamChange))then
FOnParamChange(self);
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoEditStateChanged;
var
I: Integer;
begin
for I := 0 to FConnectedControls.Count-1 do
IMySQLRSControlInterface(FConnectedControls[I]).DoEditStateChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoStatusCaptionChanged;
var
I: Integer;
begin
for I := 0 to FConnectedControls.Count-1 do
IMySQLRSControlInterface(FConnectedControls[I]).DoStatusCaptionChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetStatusCaption: WideString;
begin
Result := FStatusCaption;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetStatusCaption(StatusCaption: WideString);
begin
FStatusCaption := StatusCaption;
DoStatusCaptionChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.CheckAttributes;
begin
Editable := Assigned(ResultSet) and (ResultSet.editable <> 0);
AtLeastOneRecord := Assigned(ResultSet) and (ResultSet.rows_num + InsertedRows > 0);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoDisplaySearch(ShowReplacePage: Boolean);
begin
if TextSearchForm=nil then
TextSearchForm := TTextSearchForm.Create(nil,
ApplicationDM.QBOptions);
if ShowReplacePage then
TextSearchForm.PageControl.ActivePage :=
TextSearchForm.ReplaceTabSheet;
TextSearchForm.Show;
TextSearchForm.OnSearch := DoSearch;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.DoSearch(Sender: TObject; SearchText: WideString; ReplaceText: WideString;
SearchOptions: TTextSearchOptions): Integer;
var
I: Integer;
begin
Result := 0;
for I := 0 to FConnectedControls.Count-1 do
if IMySQLRSControlInterface(FConnectedControls[I]).Control is TMySQLRSGrid then
begin
Result := TMySQLRSGrid(IMySQLRSControlInterface(FConnectedControls[I]).Control).DoSearch(Sender,
SearchText, ReplaceText, SearchOptions);
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.GotoFirstRow;
var
I: Integer;
RSGrid: TMySQLRSGrid;
begin
for I := 0 to FConnectedControls.Count-1 do
begin
if((TObject(IMySQLRSControlInterface(FConnectedControls[I]).GetControl) is TMySQLRSGrid))then
begin
RSGrid := TMySQLRSGrid(IMySQLRSControlInterface(FConnectedControls[I]).GetControl);
if(RSGrid.CanFocus)then
RSGrid.SetFocus;
RSGrid.FocusedNode := RSGrid.GetFirstNoInit;
RSGrid.ClearSelection;
RSGrid.Selected[RSGrid.FocusedNode] := True;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.GotoLastRow;
var
I: Integer;
RSGrid: TMySQLRSGrid;
LastNode: PVirtualNode;
begin
for I := 0 to FConnectedControls.Count-1 do
begin
if((TObject(IMySQLRSControlInterface(FConnectedControls[I]).GetControl) is TMySQLRSGrid))then
begin
RSGrid := TMySQLRSGrid(IMySQLRSControlInterface(FConnectedControls[I]).GetControl);
if RSGrid.CanFocus then
RSGrid.SetFocus;
LastNode := RSGrid.GetLastNoInit;
if Assigned(LastNode) then
// If the result set is editable then an additional (empty) line is added to the RS grid.
if Assigned(LastNode.PrevSibling) and RSGrid.MySQLRS.Editable then
RSGrid.FocusedNode := LastNode.PrevSibling
else
RSGrid.FocusedNode := LastNode;
RSGrid.ClearSelection;
RSGrid.Selected[RSGrid.FocusedNode] := True;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoEdit;
begin
if Editable then
begin
DoEditStateChanged;
if not EditingAllowed then
begin
EditingAllowed := True;
end
else
begin
DoDiscardChanges;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoApplyChanges;
var
errors: PMYX_RS_ACTION_ERRORS;
error: PMYX_RS_ACTION_ERROR;
I: Integer;
RSGrid: TMySQLRSGrid;
RSAction: PMYX_RS_ACTION;
begin
ClearRSMessages;
SetStatusCaption('');
if FMySQLConn.Ping <> 0 then
FMysQLConn.Reconnect(True);
ResultsetLock.Acquire;
try
// Convert all failed actions to normal actions.
if Assigned(ResultSet.actions) then
begin
for I := 0 to ResultSet.actions.actions_num-1 do
begin
RSAction := PMYX_RS_ACTION(Integer(ResultSet.actions.actions) + sizeof(MYX_RS_ACTION) * I);
if RSAction.status = MYX_RSAS_FAILED then
RSAction.status := MYX_RSAS_NEW;
end;
// Apply actions.
errors := myx_query_apply_actions(ResultSet);
if errors <> nil then
begin
SetStatusCaption(_('Error while applying actions.'));
for I := 0 to errors.errors_num-1 do
begin
error := PMYX_RS_ACTION_ERROR(Integer(errors.errors) + sizeof(MYX_RS_ACTION_ERROR) * I);
AddRSMessage(UTF8Decode(error.error_text), error.level, error.error);
if error.error = 2006 then
FMySQLConn.Connected := False;
end;
g_free(errors);
end;
// Delete Rows from Grids.
for I := 0 to FConnectedControls.Count-1 do
if((TObject(IMySQLRSControlInterface(FConnectedControls[I]).GetControl) is TMySQLRSGrid))then
begin
RSGrid := TMySQLRSGrid(IMySQLRSControlInterface(FConnectedControls[I]).GetControl);
RSGrid.ApplyDeleteActionsToGrid;
end;
// Update resultset which will clear or re-generate a action list.
if(myx_query_update_resultset(ResultSet)<>0)then
SetStatusCaption(_('Error while applying changes to the result set.'));
// Update rows that had actions.
for I := 0 to FConnectedControls.Count-1 do
if((TObject(IMySQLRSControlInterface(FConnectedControls[I]).GetControl) is TMySQLRSGrid))then
begin
RSGrid := TMySQLRSGrid(IMySQLRSControlInterface(FConnectedControls[I]).GetControl);
RSGrid.SynchronizeActions;
end;
end;
finally
ResultsetLock.Release;
end;
Edited := False;
DoEditStateChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoDiscardChanges;
var
DoIt: Boolean;
I: Integer;
RSGrid: TMySQLRSGrid;
begin
DoIt := True;
if Assigned(FOnConfirmDeletion) and Edited then
DoIt := FOnConfirmDeletion(Self, _('Do you really want to discard all changes?'));
if DoIt then
begin
myx_query_discard_actions(ResultSet);
for I := 0 to FConnectedControls.Count-1 do
if (TObject(IMySQLRSControlInterface(FConnectedControls[I]).GetControl) is TMySQLRSGrid) then
begin
RSGrid := TMySQLRSGrid(IMySQLRSControlInterface(FConnectedControls[I]).GetControl);
RSGrid.SynchronizeActions;
end;
Edited := False;
EditingAllowed := False;
DoEditStateChanged;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.DoMessagesChanged;
var
I: Integer;
begin
for I := 0 to FConnectedControls.Count-1 do
IMySQLRSControlInterface(FConnectedControls[I]).DoMessagesChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.AddRSMessage(Msg: WideString; MsgType: MYX_QUERY_ERROR_LEVEL;
MsgNr: Integer);
begin
if(MsgType=MYX_QEL_ERROR)then
ErrorOccured := True;
ErrorMessages.Add(TRSError.Create(Msg, MsgType, MsgNr));
DoMessagesChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.ClearRSMessages;
begin
ErrorMessages.Clear;
DoMessagesChanged;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetStopQuery: Boolean;
begin
FSynchronizer.BeginRead;
try
Result := FStopQuery;
finally
FSynchronizer.EndRead;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetStopQuery(StopQuery: Boolean);
begin
FSynchronizer.BeginWrite;
try
if FStopQuery <> StopQuery then
begin
FStopQuery := StopQuery;
if FStopQuery then
SetStatusCaption(_('Query is being stopped...'));
end;
finally
FSynchronizer.EndWrite;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetQueryExecuting: Boolean;
begin
FSynchronizer.BeginRead;
try
Result := FQueryExecuting;
finally
FSynchronizer.EndRead;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TMySQLRS.SetQueryExecuting(QueryExecuting: Boolean);
begin
FSynchronizer.BeginWrite;
try
if FQueryExecuting <> QueryExecuting then
begin
FQueryExecuting := QueryExecuting;
if FQueryExecuting then
SetStatusCaption(_('Query is being executed...'));
end;
finally
FSynchronizer.EndWrite;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetConnectedDetailRSCount: Integer;
begin
Result := FConnectedResultsets.Count;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetConnectedDetailRS(I: Integer): TMySQLRS;
begin
if (I<FConnectedResultsets.Count) then
Result := FConnectedResultsets[I]
else
Result := nil;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetConnectedControlsCount: Integer;
begin
Result := FConnectedControls.Count;
end;
//----------------------------------------------------------------------------------------------------------------------
function TMySQLRS.GetConnectedControls(I: Integer): IMySQLRSControlInterface;
begin
if (I<FConnectedControls.Count) then
Result := IMySQLRSControlInterface(FConnectedControls[I])
else
Result := nil;
end;
//----------------- TExecuteQueryThread --------------------------------------------------------------------------------
constructor TExecuteQueryThread.Create(MySQLRS: TMySQLRS);
begin
inherited Create(True);
FResultset := MySQLRS;
FCurrentRowCount := 0;
FPreviousRowCount := 0;
FRawResultset := nil;
FErrorMessage := '';
// When the user is in the middle of a transaction or just starts one then don't create a new connection.
if MySQLRS.MySQLConn.StartsTransaction(FResultset.FSQL) then
MySQLRS.MySQLConn.InTransaction := True;
FNeedCleanup := not MySQLRS.MySQLConn.InTransaction;
if FNeedCleanup then
begin
if MySQLRS.MySQLConn.EmbeddedConnection then
ThreadPMySQL := myx_mysql_embedded_init()
else
ThreadPMySQL := myx_mysql_init();
if ThreadPMySQL = nil then
raise EMyxError.Create(_('Error while allocating memory for MySQL Struct in Query Execute Thread.'));
if myx_connect_to_instance(MySQLRS.MySQLConn.UserConnection.get_record_pointer, ThreadPMySQL) <> 0 then
raise EMyxError.Create(_('Query Execute Thread cannot connect to MySQL'));
end
else
ThreadPMySQL := MySQLRS.MySQLConn.MySQL;
end;
//----------------------------------------------------------------------------------------------------------------------
destructor TExecuteQueryThread.Destroy;
begin
// Avoid any MySQL operation if the thread was stopped externally (which usually indicates a forced shutdown of
// the thread, e.g. because a query hung on the server).
if FNeedCleanUp and Assigned(FResultset) and Assigned(FResultset.MySQLConn) and not Terminated then
myx_mysql_close(ThreadPMySQL);
inherited Destroy;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.CancelQuery;
var
Thread: TCancelThread;
begin
Thread := TCancelThread.Create(FResultset.MySQLConn, ThreadPMySQL);
try
Thread.WaitFor;
finally
Thread.Free;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.Execute;
var
ErrorCode: MYX_LIB_ERROR;
Parameters: TMYX_STRINGLIST;
Connection: TMySQLConn;
InTransaction: Boolean;
DoRemoveLastRS: Boolean;
begin
DoRemoveLastRS := False;
Connection := FResultset.MySQLConn;
try
try
InTransaction := Connection.InTransaction;
// If the user is in a transaction, wait till connection is free.
if (InTransaction) then
Connection.Lock.Acquire;
try
// Set target schema implicitly.
myx_use_schema(ThreadPMySQL, Connection.UserConnection.schema);
FQuery := FResultset.SQL;
Parameters := TMYX_STRINGLIST.create;
try
Parameters.strings.Text := '';
//Global Params
if (FResultset.GlobalParams<>nil) then
Parameters.strings.Text := Parameters.strings.Text+
FResultset.GlobalParams.Text;
//Local Params
if (FResultset.LocalParams<>nil) then
Parameters.strings.Text := Parameters.strings.Text+
FResultset.LocalParams.Text;
//Add dynamic parameters from parent
if (FResultset.FParentRS<>nil) and
(FResultset.FParentRS.DynamicParams<>nil) then
Parameters.strings.Text := Parameters.strings.Text+#13#10+
FResultset.FParentRS.DynamicParams.Text;
FRawResultset := myx_query_execute(ThreadPMySQL, FQuery, Ord(ApplicationDM.QBOptions.EnforceEditableQueries),
Parameters.get_record_pointer, @ErrorCode, Self, progress_row_fetch, resultset_realloc_before,
resultset_realloc_after, @FAffectedRows);
// Check if the thread was terminated in the mean time.
if not Terminated then
begin
// Handle multiple resultsets.
while True do
begin
// If this was executed using a cloned MySQL Connection, reassign the original one.
if (Not(FResultset.MySQLConn.InTransaction)) and
(FResultset.ResultSet<>nil) then
FResultset.ResultSet.mysql := FResultset.MySQLConn.MySQL;
//Display error/summary
if (ErrorCode=MYX_NO_ERROR) then
Synchronize(QuerySuccess)
else
if ErrorCode=MYX_STOP_EXECUTION then
Synchronize(QueryStopped)
else
Synchronize(QueryError);
//Check if there is a resultset left
if Not( (FRawResultset<>nil) and (FRawResultset.has_more=1) ) then
break;
//Get new MySQLRS
if Assigned(FResultset.CreateNextRSForMultipleRSQuery) then
begin
Synchronize(CreateNextRSForMultipleRSQuery);
if FResultset<>nil then
begin
//Reset thread values
FCurrentRowCount := 0;
FPreviousRowCount := 0;
FRawResultset := nil;
FErrorMessage := '';
//Fetch next resultset (use _ function so nil can be passed as query)
FRawResultset := _myx_query_execute(ThreadPMySQL, nil, 0, nil, @ErrorCode, Self, progress_row_fetch,
resultset_realloc_before, resultset_realloc_after, nil);
// Handle last result in a multi resultset query.
if (ErrorCode = MYX_SQL_ERROR) and (myx_mysql_errno(ThreadPMySQL) = 0) then
begin
DoRemoveLastRS := True;
Break;
end
else
Synchronize(ShowRSForMultipleRSQuery);
end
else
Break;
end
else
Break;
end;
end;
finally
Parameters.Free;
end;
finally
if InTransaction then
Connection.Lock.Release;
end;
except
Synchronize(QueryError);
raise;
end;
finally
Synchronize(QueryExecuted);
if DoRemoveLastRS then
Synchronize(RemoveRSForMultipleRSQuery);
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.CreateNextRSForMultipleRSQuery;
begin
if Assigned(FResultset.CreateNextRSForMultipleRSQuery) then
FResultset := FResultset.CreateNextRSForMultipleRSQuery(FResultset)
else
FResultset := nil;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.RemoveRSForMultipleRSQuery;
begin
if Assigned(FResultset.RemoveRSForMultipleRSQuery) then
FResultset.RemoveRSForMultipleRSQuery(FResultset);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.ShowErrorMessage;
begin
ShowModalDialog(_('Problem while executing query'), FErrorMessage, myx_mtError);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.ShowRSForMultipleRSQuery;
begin
if Assigned(FResultset.ShowRSForMultipleRSQuery) then
FResultset.ShowRSForMultipleRSQuery(FResultset);
end;
//----------------------------------------------------------------------------------------------------------------------
function progress_row_fetch(current_row_count: Longint; previous_row_count: Longint; result_set: PMYX_RESULTSET;
user_data: Pointer):Integer;
var
Thread: TExecuteQueryThread;
S: WideString;
begin
Thread := user_data;
if GetMemoryLoad > 95 then
begin
Thread.CancelQuery;
S := _('The memory load of the system is extremly high.');
if current_row_count >= 100000 then
S := S + ' ' + _('This is likely because of the current result being very large.') + ' ';
S := S + #10#10#13#10 + _('In order to keep the system responsive record set retrieval has been stopped.');
Thread.FErrorMessage := S;
Thread.Synchronize(Thread.ShowErrorMessage);
Result := 1;
end
else
begin
try
Thread.FCurrentRowCount := current_row_count;
Thread.FPreviousRowCount := previous_row_count;
Thread.FRawResultset := result_set;
Thread.Synchronize(Thread.BuildGrid);
Result := Ord(Thread.FResultset.StopQuery);
if Thread.FResultset.StopQuery then
Thread.CancelQuery;
except
on x: Exception do
begin
Thread.FErrorMessage := x.Message;
Thread.Synchronize(Thread.QueryError);
Result := Ord(True);
end;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure resultset_realloc_before(user_data: Pointer);
var
Thread: TExecuteQueryThread;
begin
Thread := user_data;
try
Thread.FResultset.ResultsetLock.Acquire;
except
on x: Exception do
begin
Thread.FResultset.ResultsetLock.Release;
Thread.FErrorMessage := x.Message;
Thread.Synchronize(Thread.QueryError);
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure resultset_realloc_after(user_data: Pointer);
var
Tread: TExecuteQueryThread;
begin
Tread := user_data;
try
Tread.FResultset.ResultsetLock.Release;
except
on x: Exception do
begin
Tread.FErrorMessage := x.Message;
Tread.Synchronize(Tread.QueryError);
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.BuildGrid;
var
J: Integer;
Control: TObject;
RSGrid: TMySQLRSGrid;
begin
if Assigned(FResultset) then
begin
if FPreviousRowCount = 0 then
FResultset.ResultSet := FRawResultset;
for J := 0 to FResultset.FConnectedControls.Count-1 do
begin
Control := IMySQLRSControlInterface(FResultset.FConnectedControls[J]).GetControl;
if Control.InheritsFrom(TMySQLRSGrid) then
begin
RSGrid := Control as TMySQLRSGrid;
// If this is the first block of rows, add columns.
if FPreviousRowCount = 0 then
begin
RSGrid.MySQLRS.ResultSet := FRawResultset;
RSGrid.BuildColumns;
RSGrid.FocusedColumn := 1;
end;
// Add rows.
RSGrid.BuildRows(FPreviousRowCount, FCurrentRowCount - 1, FPreviousRowCount = 0);
FResultset.CheckAttributes;
FResultset.StatusCaption := Format(_('%d rows fetched so far.'), [FCurrentRowCount]);
RSGrid.FinishedBuilding;
end;
end;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.QueryExecuted;
begin
if(Assigned(FResultset)) then
if(Assigned(FResultset.OnQueryExecuted))then
FResultset.OnQueryExecuted(FResultset);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.FetchMySQLMessages;
var
PMsgs: PMYX_MYSQL_ERROR_MSGS;
PMsg: PMYX_MYSQL_ERROR_MSG;
I: Integer;
begin
PMsgs := myx_mysql_error_msgs_fetch(ThreadPMySQL);
if (PMsgs <> nil) then
begin
for I := 0 to PMsgs.errors_num - 1 do
begin
PMsg := PMYX_MYSQL_ERROR_MSG(Integer(PMsgs.errors) +
sizeof(MYX_MYSQL_ERROR_MSG) * I);
FResultset.AddRSMessage(UTF8Decode(PMsg.text), PMsg.level,
PMsg.error);
end;
myx_mysql_error_msgs_free(PMsgs);
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.QuerySuccess;
var
j: Integer;
RSGrid: TMySQLRSGrid;
S: WideString;
begin
if(FResultset.ResultSet<>nil)then
for j := 0 to FResultset.FConnectedControls.Count-1 do
begin
if(TObject(IMySQLRSControlInterface(FResultset.FConnectedControls[j]).GetControl).InheritsFrom(TMySQLRSGrid))then
begin
RSGrid := TMySQLRSGrid(IMySQLRSControlInterface(FResultset.FConnectedControls[j]).GetControl);
RSGrid.BuildRowForAppending;
end;
end;
FResultset.CheckAttributes;
//Check if this command has commited the open Trx (if there is any)
FResultset.MySQLConn.CheckConnectionStatusChange(FQuery);
if FCurrentRowCount <> 1 then
S := 's'
else
S := '';
if (FResultset.ResultSet<>nil)then
FResultset.SetStatusCaption(
Format(_('%d row%s fetched in %.4fs (%.4fs)'),
[FCurrentRowCount, S,
FResultset.ResultSet.fetch_time,
FResultset.ResultSet.query_time]))
else
begin
if FAffectedRows > 0 then
begin
if FAffectedRows = 1 then
FResultset.SetStatusCaption(_('1 row affected by the last command, no resultset returned.'))
else
FResultset.SetStatusCaption(Format(_('%s rows affected by the last command, no resultset returned.'),
[IntToStr(FAffectedRows)]))
end
else
FResultset.SetStatusCaption(_('Query returned no resultset.'));
end;
FResultset.StopQuery := False;
FResultset.QueryExecuting := False;
//Check for errors and warnings
FetchMySQLMessages;
if(Assigned(FResultset.OnQuerySuccess))then
FResultset.OnQuerySuccess(FResultset);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.QueryStopped;
begin
FResultset.CheckAttributes;
// Check if this command has commited the open Trx (if there is any).
FResultset.MySQLConn.CheckConnectionStatusChange(FQuery);
if FResultset.ResultSet<>nil then
FResultset.SetStatusCaption(Format(_('Query aborted. %d rows fetched so far in %.4fs (%.4fs)'), [FCurrentRowCount,
FResultset.ResultSet.fetch_time, FResultset.ResultSet.query_time]))
else
FResultset.SetStatusCaption(_('Query aborted.'));
FResultset.StopQuery := False;
FResultset.QueryExecuting := False;
// Check for errors and warnings.
FetchMySQLMessages;
if(Assigned(FResultset.OnQueryStopped))then
FResultset.OnQueryStopped(FResultset);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TExecuteQueryThread.QueryError;
begin
FResultset.FreeResultSet;
// Check if there actually was a MySQL Error.
if myx_mysql_errno(ThreadPMySQL) > 0 then
begin
// Check if ExceptionMsg is set.
if FErrorMessage<>'' then
FResultset.SetStatusCaption(FErrorMessage)
else
FResultset.SetStatusCaption(_('The query could not be executed.'));
end
else
FResultset.SetStatusCaption(_('No resultset returned.'));
FResultset.StopQuery := False;
FResultset.QueryExecuting := False;
// Check for errors and warnings. However if the thread was terminated externally then skip that step
// as it is likely that our connection does not work anymore.
if not Terminated then
FetchMySQLMessages;
if(Assigned(FResultset.OnQueryError))then
FResultset.OnQueryError(FResultset);
end;
//----------------- TRSError -------------------------------------------------------------------------------------------
constructor TRSError.Create(Msg: WideString; MsgType: MYX_QUERY_ERROR_LEVEL; MsgNr: Integer);
begin
FMessage := Msg;
FMessageType := MsgType;
FMessageNumber := MsgNr;
end;
//----------------- TCommandList ---------------------------------------------------------------------------------------
constructor TCommandList.Create;
begin
FCommands := TList.Create;
FCurrent := -1;
end;
//----------------------------------------------------------------------------------------------------------------------
destructor TCommandList.Destroy;
begin
Clear;
FCommands.Free;
inherited;
end;
//----------------------------------------------------------------------------------------------------------------------
function TCommandList.GetCurrent: PCommandEntry;
// Returns the current command entry or nil if there is none.
begin
Result := nil;
if (FCurrent >= 0) and (FCurrent < FCommands.Count) then
Result := FCommands[FCurrent];
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TCommandList.AddEntry(const SQL: WideString; const Caret, BB, BE: TPoint);
var
Entry: PCommandEntry;
I: Integer;
begin
New(Entry);
Entry.SQL := SQL;
Entry.Caret := Caret;
Entry.SelectionStart := BB;
Entry.SelectionEnd := BE;
// If the current entry is not at the end of the list then delete everything after it
// making it so the end.
for I := FCommands.Count - 1 downto FCurrent + 1 do
Dispose(PCommandEntry(FCommands[I]));
if FCurrent > -1 then
begin
FCommands.Count := FCurrent + 1;
FCommands.Capacity := FCurrent + 1;
end;
FCurrent := FCommands.Add(Entry);
end;
//----------------------------------------------------------------------------------------------------------------------
function TCommandList.Back: PCommandEntry;
// Returns the previous entry in the list relative to the current position or nil
// we reached the start.
begin
Result := nil;
if FCurrent > 0 then
begin
Dec(FCurrent);
Result := FCommands[FCurrent];
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TCommandList.Clear;
var
I: Integer;
begin
for I := 0 to FCommands.Count - 1 do
Dispose(PCommandEntry(FCommands[I]));
FCommands.Clear;
FCurrent := -1;
end;
//----------------------------------------------------------------------------------------------------------------------
function TCommandList.HasBack: Boolean;
// Determines if there is still a previous entry in the command list (relative to the current position).
begin
Result := FCurrent > 0;
end;
//----------------------------------------------------------------------------------------------------------------------
function TCommandList.HasNext: Boolean;
// Determines if there is still a next entry in the command list (relative to the current position).
begin
Result := FCurrent < FCommands.Count - 1;
end;
//----------------------------------------------------------------------------------------------------------------------
function TCommandList.Next: PCommandEntry;
// Returns the next entry in the list relative to the current position or nil if we reach the end.
begin
Result := nil;
if FCurrent < FCommands.Count - 1 then
begin
Inc(FCurrent);
Result := FCommands[FCurrent];
end;
end;
//----------------------------------------------------------------------------------------------------------------------
function TCommandList.MakeTOC(const SQL: WideString; const Caret, BB, BE: TPoint): PCommandEntry;
// Creates a new entry with the given values and makes it the TOC (top of content), i.e., all
// entries after the current one (if there are any) are deleted before the new entry is added.
// There is a special case here: if the current entry does not differ to the given SQL then nothing happens.
// Returns the new (old) current command.
begin
if (FCurrent = -1) or (Current.SQL <> SQL) then
AddEntry(SQL, Caret, BB, BE);
Result := Current;
end;
//----------------------------------------------------------------------------------------------------------------------
end.
|