createview: Create or drop a view

idaCreateView, idaDropViewR Documentation

Create or drop a view

Description

Use these functions to create or drop a view that is based on a ida.data.frame.

Usage

idaCreateView(x, newColumn = NULL) 
idaDropView(v) 

Arguments

x

ida.data.frame for which a view is to be created.

newColumn

The expression specifying the column to be added.

v

Name of the view to be dropped.

Details

The idaCreateView function creates a view from the specified IDA data frame. The idaDropView function drops the specified view.

Value

The idaCreateView function returns the view name. The idaDropView function does not return a value.

Examples

## Not run: 
idf <- ida.data.frame('IRIS')

#Create a view based on the IDA data frame
vname <- idaCreateView(idf)

#Drop the view
idaDropView(vname)

## End(Not run)

ibmdbR documentation built on Nov. 24, 2023, 5:09 p.m.