Full: Title Full

View source: R/Full.R

FullR Documentation

Title Full

Description

Executes a query and returns a list of vectors, each one representing a result as a string , prefixed by the 'XDM' (Xpath Data Model) Meta Data <https://www.xdm.org/>. Meta Data and results are seaparated by a '|'.

Usage

Full(query_obj)

Arguments

query_obj

QueryClass instance-ID

Examples

## Not run: 
query_txt <- "collection('/TestDB/Test.xml')"
query_obj <- Query(Session, query_txt)

print(Full(query_obj))

## Return
[[1]]
[1] "2f"               "/TestDB/Test.xml"
[[2]]
[1] "3c"                                  "Line_1 line=\"1\">Content 1</Line_1"
[[3]]
[1] "2f"               "/TestDB/Test.xml"
[[4]]
[1] "3c"                                  "Line_2 line=\"2\">Content 2</Line_2"


## End(Not run)


RBaseX documentation built on Dec. 2, 2022, 5:10 p.m.

Related to Full in RBaseX...