I have a question about the OBJECT Method in Fortran. When I use an external Assembly and create an object like in the following code (myBlsDbLibrary)
OBJECT('BLSDBLibrary.BlsDb') myBlsDbLibrary
ASSEMBLY_EXTERNAL(name='BLSDBLibrary.BlsDb.GetData') :: blsdbgetdata
OBJECT('System.String') strSQL
strSQL=NEW@('System.String', 'SCHMELZNR')
! myBlsDbLibrary = new@('BLSDBLibrary.BlsDb')
arraylist=blsdbgetdata(blsdblibrary, strSQL)
I don't jump into the c# constructor! When I debug this code I also doesn't jump into the constructor of the Class BlsDb. Why do I not jump into the contructor?? In this Constructor I connect a Database!
When I'm trying to create an object myBlsDbLibrary with the following code:
OBJECT('BLSDBLibrary.BlsDb') myBlsDbLibrary
myBlsDbLibrary=new@('BLSDBLibrary.BldDb')
I get a compiler error like this: ' There were compile errors, abandoning link...' Can somebody help me to jump in my c# Constructor?
Greeting from Germany