⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function.query.resgood

📁 Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por
💻 RESGOOD
📖 第 1 页 / 共 5 页
字号:
=========     71     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT(PropertyUint64)-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Parameter 1 for function STRINGTOUINT has type Uint64.  It must be type String.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Parameter 1 for function STRINGTOUINT has type Uint64.  It must be type String.=========     72     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String cannot be empty.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String cannot be empty.=========     73     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('-27')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String '-27' cannot begin with '-'.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String '-27' cannot begin with '-'.=========     74     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('+a22')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String '+a22' is badly formed.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String '+a22' is badly formed.=========     75     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('a22')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String 'a22' is badly formed.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String 'a22' is badly formed.=========     76     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('0121b')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  Character '2' in string '0121b' is not a binary digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  Character '2' in string '0121b' is not a binary digit.=========     77     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('01a1b')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  Character 'a' in string '01a1b' is not a binary digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  Character 'a' in string '01a1b' is not a binary digit.=========     78     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('0x')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String '0x' needs a hexadecimal digit character following '0x'-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String '0x' needs a hexadecimal digit character following '0x'=========     79     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('0xFG2')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  Character 'G' in string '0xFG2' is not a hexidecimal digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  Character 'G' in string '0xFG2' is not a hexidecimal digit.=========     80     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint64 = STRINGTOUINT('02x34')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  Character 'x' in string '02x34' is not a decimal digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  Character 'x' in string '02x34' is not a decimal digit.=========     81     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyUint32 = STRINGTOUINT('0101bb')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  Character 'b' in string '0101bb' is not a binary digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  Character 'b' in string '0101bb' is not a binary digit.=========     82     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT()-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Function STRINGTOSINT has 0 parameters.  It must have between 1 and 1.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Function STRINGTOSINT has 0 parameters.  It must have between 1 and 1.=========     83     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT(-33)-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Parameter 1 for function STRINGTOSINT has type Sint64.  It must be type String.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Parameter 1 for function STRINGTOSINT has type Sint64.  It must be type String.=========     84     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT(PropertySint64)-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Parameter 1 for function STRINGTOSINT has type Sint64.  It must be type String.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Parameter 1 for function STRINGTOSINT has type Sint64.  It must be type String.=========     85     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  String cannot be empty.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  String cannot be empty.=========     86     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('-a22')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String '-a22' is badly formed.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String '-a22' is badly formed.=========     87     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('a22')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Uint64.  String 'a22' is badly formed.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Uint64.  String 'a22' is badly formed.=========     88     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('-0121b')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  Character '2' in string '-0121b' is not a binary digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  Character '2' in string '-0121b' is not a binary digit.=========     89     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('-01a1b')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  Character 'a' in string '-01a1b' is not a binary digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  Character 'a' in string '-01a1b' is not a binary digit.=========     90     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('-0x')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  String '-0x' needs a hexadecimal digit character following '0x'.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  String '-0x' needs a hexadecimal digit character following '0x'.=========     91     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('-0xFG2')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  Character 'G' in string '-0xFG2' is not a hexidecimal digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  Character 'G' in string '-0xFG2' is not a hexidecimal digit.=========     92     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint64 = STRINGTOSINT('-02x34')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  Character 'x' in string '-02x34' is not a decimal digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  Character 'x' in string '-02x34' is not a decimal digit.=========     93     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertySint32 = STRINGTOSINT('-0101bb')-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Error converting string to Sint64.  Character 'b' in string '-0101bb' is not a binary digit.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Error converting string to Sint64.  Character 'b' in string '-0101bb' is not a binary digit.=========     94     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyReal64 = STRINGTOREAL()-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Function STRINGTOREAL has 0 parameters.  It must have between 1 and 1.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Function STRINGTOREAL has 0 parameters.  It must have between 1 and 1.=========     95     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyReal64 = STRINGTOREAL(3.4339999999999998e-1)-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Parameter 1 for function STRINGTOREAL has type Real.  It must be type String.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Parameter 1 for function STRINGTOREAL has type Real.  It must be type String.=========     96     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyReal64 = STRINGTOREAL(3.5350000000000000e3)-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!Parameter 1 for function STRINGTOREAL has type Real.  It must be type String.-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=2ERROR!Parameter 1 for function STRINGTOREAL has type Real.  It must be type String.=========     97     =========-----Query: SELECT * FROM CQL_TestPropertyTypes  WHERE PropertyReal64 = STRINGTOREAL(PropertyReal64)-----Instance: //a.b.com/root/SampleProvider:CQL_TestPropertyTypes.InstanceId=1ERROR!

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -