Data Security with Flex2SQL and BTR2SQL Connectivity Products
The most common reason for Enterprises looking to migrate from legacy Btrieve or DataFlex databases is the urgent need to address security and...
This example returns user information from MySQL:
// Begin of Example
Use Mertech.inc
String sID sUser sHost sDB sCommand sTime sState sInfo
Login "localhost" "root" "mertech" "MDSMYSQL"
SQL_SET_STMT TO "show processlist" SQL_PREPARE_STMT SQL_EXECUTE_STMT
Repeat
SQL_FETCH_NEXT_ROW into sID sUser sHost sDB sCommand sTime sState sInfo
[ Found ] Begin
Showln "ID : "sID
Showln "User : "sUser
Showln "Host : "sHost
Showln "DB : "sDB
Showln "Command: "sCommand
Showln "Time : "sTime
Showln "State : "sState
Showln "Info : "sInfo
Showln
Showln "Presse any key ..."
Showln
Inkey Pageend
End
Until [ Not Found ]
Showln Showln "Ok ...." Inkey Pageend
// End of Example
The most common reason for Enterprises looking to migrate from legacy Btrieve or DataFlex databases is the urgent need to address security and...
Introduction Many independent software vendors (ISV) and corporate users still rely on applications that use a category of database collective called...
COBOL applications are the foundation of numerous essential business functions, especially within the banking, insurance, and government sectors....