RE: Crystal reports
Using EXEC ADO is a comfortable possibility to create a DataSet with Visual Cobol.
View ArticleRE: Crystal reports
Sorry for English, translated by google.I use Crystal Reports a long time and not use database, what I do is to create a .csv file (delimited;) and create also a arquino schema.ini where I set all the...
View ArticleRE: Linker flag -U in cob32 or cob64
Thank you, Yvon You gave me a very good example and use case for linker -U flag.Have you ever encounter the following issue:My source code is as simple as yours: (COB64.cbl) .... procedure...
View ArticleRE: Linker flag -U in cob32 or cob64
You should use the .cbl extension in the link. Not . o.When .cbl: cob64 -g -x -t -oCOB64 COB64.cbl --> You compile and linkWhen .o: cob64 -g -x -t -oCOB64 COB64.o --> You only link? Would...
View ArticleRE: Linker flag -U in cob32 or cob64
I rename COB64.cbl as HELLO.cbl cob64 -g -x -t -oHELLO HELLO.cbl ./HELLO --- works cob64 -g -x -t -oHELLO HELLO.o./HELLO -- works cob64 -g -x -t -oHELLO HELLO.o -Ulinker flag -U makes all...
View ArticleRE: Linker flag -U in cob32 or cob64
I don't reproduce the behaviour you describe...From the 1st picture in this notes, I would see the OS as being Linux. What MF product ( including update level ) is being used? I would think it's better...
View ArticleRE: Linker flag -U in cob32 or cob64
Thank you, YvonDon't worry about it, I figure out how to turn off -U in Eclipse GUIchecked "Error on undefined symbol" , it turns off -U flag.Thank you again.
View ArticleEclipse
I'm trying to download Visual Cobol for Eclipse Personal Edition but the only option that appears is for Visual Studio. What happened with Visual Studio for Eclipse? Microfocus has disabled this...
View ArticleRE: dfconv.exe
Hello mf_galberico:It should work the same, possibly depending on the contents of the file "flsetl.PRO".I recommend that you create a zip archive containing just the three files flsetl.PRO, flsetl.SRT,...
View ArticleRE: Relativity and Linked Servers
I use Relativity in all environments, Windows and Unix/Linux, RM, Micro Focus and Visual COBOLs. I am typically in an RM/COBOL environment, but there is no operational difference - only the underlying...
View ArticleRE: dfconv.exe
Hello mf_galberico:In the case of Server 5.1, the command to invoke was:run.exe dfconvWhereas under Server 2.3.1, the command to invoke is:dfconv.exeA person could invoke these commands while...
View ArticleRE: Special Linkage for DB2 Stored Procedure
But that is true:using group item TRBLINP as input parameter. TRBLINP-IO-TEXT PIC X(41) still has TRBLINP's original value of "1><611016007800011"and TRBLINP-IO-LEN has the length.I saw the...
View ArticleRE: Relativity and Linked Servers
Tom, Good to hear that others are having success with the product. I have been struggling with the lack of documentation and some suggestions on "best practices". I have been using ODBCTest but only...
View ArticleRE: Special Linkage for DB2 Stored Procedure
I am not really sure what "magic" it is to which you are referring? Can you show me what the call of this stored procedure looks like including the setup of the parameters and how you are returning the...
View ArticleRE: Special Linkage for DB2 Stored Procedure
CREATE PROCEDURE "GIP2TRBL" (INOUT TRBLINP VARCHAR(41) CCSID EBCDIC FOR SBCS DATA) DYNAMIC RESULT SETS 1 PARAMETER CCSID EBCDIC EXTERNAL NAME "GIP2RAM2" LANGUAGE COBOL MODIFIES SQL DATA...
View ArticleRE: Relativity and Linked Servers
The documentation, on both a process 'How to' level, and on a reference level (screen by screen), is in the Relativity Designer help file, RELDBDSN.CHM.SQL syntax supported is in another help file:...
View ArticleRelativity and Linked Servers
My Cobol server is running in Linux and I am using Relativity to populate some data to a website. I have a linked server setup using the 64bit driver. First off looking to see if anyone else has...
View ArticleRE: Relativity and Linked Servers
The first problem was that the SQL statement has a typo in it. The SQL Parser was correctly flagging this but Cliff didn't realize what the << ??? >> in the error message meant. The...
View ArticleRE: Special Linkage for DB2 Stored Procedure
I think the problem is the parameter that you are passing to the stored procedure and you haven't shown me that yet.Can you show me what the actual call looks like to the stored procedure?You can...
View Article