Definition at line 14 of file XmlFunctionsTest.cs.
void Deveel.Data.Xml.XmlFunctionsTest.ExtractValue |
( |
| ) |
|
|
inline |
Definition at line 53 of file XmlFunctionsTest.cs.
54 const string text =
"EXTRACTVALUE(TO_XML('<root><child>value</child></root>'), '/root/child/text()')";
58 Assert.IsNotNull(result);
60 Assert.IsFalse(result.IsNull);
DataObject ParseAndInvoke(string text)
void Deveel.Data.Xml.XmlFunctionsTest.ExtractXml |
( |
| ) |
|
|
inline |
Definition at line 42 of file XmlFunctionsTest.cs.
43 const string text =
"EXTRACT(TO_XML('<root><child>value</child></root>'), '/root/child')";
47 Assert.IsNotNull(result);
48 Assert.IsInstanceOf<XmlNodeType>(result.Type);
49 Assert.IsFalse(result.IsNull);
DataObject ParseAndInvoke(string text)
DataObject Deveel.Data.Xml.XmlFunctionsTest.ParseAndInvoke |
( |
string |
text | ) |
|
|
inlineprivate |
Definition at line 19 of file XmlFunctionsTest.cs.
25 var invoke =
new Invoke(functionName, args);
static SqlExpression Parse(string s)
Parses the given SQL string to an expression that can be evaluated.
static DataObject InvokeFunction(this IQuery query, Invoke invoke)
The information about the invocation of a routine, including the full name and arguments (as SqlExpre...
Defines the base class for instances that represent SQL expression tree nodes.
override void Deveel.Data.Xml.XmlFunctionsTest.RegisterServices |
( |
ServiceContainer |
container | ) |
|
|
inlineprotectedvirtual |
void Deveel.Data.Xml.XmlFunctionsTest.ToXmlType |
( |
| ) |
|
|
inline |
Definition at line 31 of file XmlFunctionsTest.cs.
32 const string text =
"TO_XML('<root>value</root>')";
36 Assert.IsNotNull(result);
37 Assert.IsInstanceOf<XmlNodeType>(result.Type);
38 Assert.IsFalse(result.IsNull);
DataObject ParseAndInvoke(string text)
void Deveel.Data.Xml.XmlFunctionsTest.UpdateText |
( |
| ) |
|
|
inline |
Definition at line 64 of file XmlFunctionsTest.cs.
65 const string text =
"UPDATEXML(TO_XML('<root><child>value</child></root>'), '/root/child/text()', 'value2')";
69 Assert.IsNotNull(result);
70 Assert.IsInstanceOf<XmlNodeType>(result.Type);
71 Assert.IsFalse(result.IsNull);
DataObject ParseAndInvoke(string text)
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb.xml.nunit/Deveel.Data.Xml/XmlFunctionsTest.cs