Skip to Content

 COBOL/ESQL and Veryant ESQL Generator

How do I connect to a MS SQL 2005 Named Instance?

Question: What should I do if I have more than one MS SQL Server instance in the same computer/server, and I want to connect to any of its named instances and not to the default one? Answer: Make sure you have followed the general... Read More

When to set iscobol.jdbc.autocommit=false when using ESQL

isCOBOL ESQL is built upon JDBC, and the JDBC specification says that connections should (by default) be in 'autocommit' mode. That means that every time a modification is made (whether it be INSERT, UPDATE or DELETE), the database is... Read More

How do I migrate a Vision file to an Oracle database table?

Question: I know that one way to migrate a Vision indexed file to an Oracle database table is by writing a program that reads records from one logical file and writes them to another using the same FD and the following properties: iscobol.file... Read More

How do I use isCOBOL ESQL with Microsoft SQL Server?

To connect to Microsoft SQL Server use Microsoft's JDBC driver or another JDBC driver that supports Microsoft SQL Server. Install the Microsoft SQL Server JDBC Driver from http://msdn.microsoft.com/en-us/data/aa937724.aspx For example, install... Read More