Originally posted by: gargius
Hallo,
I use CPLEX with Java. Now I'd like to transfer the engine log informations into one table in SQL. I know how to produce a text file with:
String name= DATADIR+ "/EngineLog.txt";
FileOutputStream log = new FileOutputStream (new File(name));
opl.getCplex().setOut(log);
But I want to create queries in SQL.
Is there a standard command to do this? Or is it possible to access some values of the engine log? Should I word with callbacks?
Thanks in advance
Best regards
#CPLEXOptimizers#DecisionOptimization