Hello Vincent,
I got this error when binding big_int;
example:
select '9999999999' from dual;
OCI_GetBigInt is fine but got error when binding to insert statement
C2664: 'OCI_BindBigInt' : cannot convert parameter 3 from 'big_int' to
'big_int *'
/Hoa
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello Vincent,
I got this error when binding big_int;
example:
select '9999999999' from dual;
OCI_GetBigInt is fine but got error when binding to insert statement
C2664: 'OCI_BindBigInt' : cannot convert parameter 3 from 'big_int' to
'big_int *'
/Hoa
you need to pass the address of your big_int variable instread of the variable
itself