@abaplint/runtime
Version:
Transpiler - Runtime
11 lines (10 loc) • 435 B
TypeScript
import { Context } from "../context";
import { FieldSymbol, Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
export interface IUpdateDatabaseOptions {
from?: Structure | FieldSymbol;
table?: Table | FieldSymbol;
set?: string[];
where?: string;
}
export declare function updateDatabase(table: string | ICharacter, options: IUpdateDatabaseOptions, context: Context): Promise<number>;