openConnection method

  1. @override
ISapObject? openConnection(
  1. String desc, {
  2. bool sync = true,
  3. bool raise = true,
})
override

Implementation

@override
ISapObject? openConnection(
  String desc, {
  bool sync = true,
  bool raise = true,
}) {
  return _invokeObjStrIntInt(
    "OpenConnection",
    desc,
    sync ? 1 : 0,
    raise ? 1 : 0,
  );
}