I get this error:
Error 633 common signature is mismatched:SQL_CURRENTDB
I get it in FF_PumpHook
All I have in the code is :
#COMPILE Exe "//PROJECT_NAME//.exe"
' #BLOAT <num_expr>
' #COMPILER PBWIN
' #DEBUG ERROR ON|OFF
' #DIM ALL|NONE
' #OPTION {LARGEMEM32 | VERSION3 | VERSION4 | VERSION5 | WIN95 | ANSIAPI}
' #REGISTER {ALL | DEFAULT | NONE}
' #TOOLS [ON|+ | OFF|-]
' #STACK <num_expr>
' #ALIGN <boundary>
' #UNIQUE VAR [ON|OFF]
' FireFly will automatically replace the JOSEINCLUDES token (DO NOT DELETE THIS TOKEN)
//JOSEINCLUDES//
' Place your user defined Declares, Constants, and #Include files below this line. FireFly will not
' parse any of your defined #Include files - it simply includes it in the final generated code.
' -------------------------------------------------------------------------------------------------
#INCLUDE "d:\SQLTOOLS 3.0\SQLT3.INC"
#INCLUDE "d:\SQLTOOLS 3.0\SQLT3ProDLL.INC" 'SQL Tools Pro, using DLL
#Link "d:\SQLTOOLS 3.0\SQLT3Pro.PBLIB" 'SQL Tools Pro, using PBLIB
Any thoughts?
I need to update my sqltools version to 3.14 but I don't think that will help. Its always worked fine in FF 3.5
Thanks
Doug
It is
#INCLUDE "d:\SQLTOOLS 3.0\SQLT3.INC"
#INCLUDE "d:\SQLTOOLS 3.0\SQLT3ProDLL.INC" 'SQL Tools Pro, using DLL
' #Link "d:\SQLTOOLS 3.0\SQLT3Pro.PBLIB" 'SQL Tools Pro, using PBLIB
with the use of the DLL
Or
#INCLUDE "d:\SQLTOOLS 3.0\SQLT3.INC"
' #INCLUDE "d:\SQLTOOLS 3.0\SQLT3ProDLL.INC" 'SQL Tools Pro, using DLL
#Link "d:\SQLTOOLS 3.0\SQLT3Pro.PBLIB" 'SQL Tools Pro, using PBLIB
Without using the DLL
Perhaps this is causing the error.
I tried to compile it your way, but FF stopped with me.
Klaas
Thanks, I should have known that. Thats what I get for copy & paste
Doug