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...
Mertech has a comprehensive SQL command set for embedding SQL statements. Starting with v12.1, Mertech also provides a class layer that allows you to use the embedded SQL (ESQL) classes available in the DAW SQL.pkg. The Mertech class layer adds full compatibility for the DAW SQL.pkg classes and provides an ESQL interface that some may find easier to use.
Mertech’s new class layer implements a unified ESQL interface across all of our drivers, allowing for applications to migrate to database servers DAW does not support, such as MySQL and PostgreSQL.
With a few simple code changes, you can use your existing VDF applications with Mertech's new ESQL interface.
DataFlex code example (code changes shown in red):
Use Flex2SQL.pkg // replaces the DAW SQL.pkg
Handle hSQLConnect hStmt
String val
Get SQLConnect of _embsqlghoSQLHandleMngr "SQL_DRV" "(localdb)v11.0" to hSQLConnect
Set SQLDatabase of hSQLConnect to "MTSample"
Get SQLOpen of hSQLConnect to hStmt
Send SQLSetProcedureName of hStmt "testfunc"
Send SQLSetNextArgument of hStmt 80
Send SQLCall of hStmt
Get SQLReturnValue of hStmt to val
Send FreeHandle of hStmt
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....