Menu

'OCI_BindBigInt'

2009-10-21
2012-09-26
  • Nobody/Anonymous

    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

     
  • Vincent Rogier

    Vincent Rogier - 2009-10-24

    you need to pass the address of your big_int variable instread of the variable
    itself