|
Sybase CT-LIB to Oracle OCI Conversion
We have been spending years to make our automated database migration software SQLWays be more functional and more attractive to the client. Today not only do we propose the database conversion tool SQLWays for stored procedure migration, function migration, trigger migration, view migration, schema migration and data migration. We help understand our clients the value of automated database and application migration solutions that enable business growth.
Today SQLWays can convert Sybase CT-LIB C/C++ API to Oracle OCI.
Conversion features
- Add the include files for OCI API functions and structures:
#include "ocilib.h"
Convert API variable type:
CS_CONNECTION *connection;
CS_COMMAND *cmd;
convert to:
OCI_Connection * connection;
OCI_Statement * cmd;
Convert API method:
ct_connect(connection, (CS_CHAR *) NULL, 0);
ct_cmd_alloc(connection, &cmd);
ct_command(cmd, CS_LANG_CMD,
"select name from customers \
where state = 'CA'", CS_NULLTERM, CS_UNUSED);
ct_send(cmd);
convert to:
cmd = OCI_StatementCreate(connection);
OCI_Prepare(cmd "select name from customers where state = 'CA'");
OCI_Execute(cmd);
SQLWays also allows you to convert dynamic SQL in the chosen direction at the same time you convert API.
Way SQLWays
SQLWays API conversion tool can easily migrate Sybase CT-LIB and embedded SQL project to Oracle OCI. This allows you to dramatically decrease conversion risks and significantly reduce in-house efforts. Reasonable pricing strategy makes SQLWays even more powerful instrument for such migration type.
To order a demo of SQLWays conversion software please go to request a demo. To find out about our pricing policy go to request a quote. You can also reach us via e-mail at sales@ispirer.com or support@ispirer.com and get a professional answer to any question.
|