inOutInteger method

Future<OracleVariable> inOutInteger()

Create an IN/OUT Integer parameter (user-friendly helper)

Implementation

Future<OracleVariable> inOutInteger() async {
  return createVar(
    oracleType: DPI_ORACLE_TYPE_NUMBER,
    nativeType: DPI_NATIVE_TYPE_INT64,
    direction: BindDirection.inOut,
  );
}