Where is the method ParamByName from MySqlCommand
Posted: Mon 02 Apr 2012 06:46
Hello all,
in C++ (VCL) I'm using TMyQuery to process SQL commands and the method ParamByName to access the parameters.
I cannot find the method.
Only the simple index method like
Thanks
Thomas
in C++ (VCL) I'm using TMyQuery to process SQL commands and the method ParamByName to access the parameters.
I cannot find the method.
Only the simple index method like
Code: Select all
sqlCommand.Parameters[0].Value = 60;
Thomas