diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-04-26 14:07:40 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-04-27 08:44:12 +0200 |
commit | 24418700059d2b6826f800d265f52061c48c34e5 (patch) | |
tree | 9f47814e54029a9cddd84b313505c290a67218cc /officecfg | |
parent | 4d60fd1d480521df43120618736465628b540070 (diff) |
CommandType is "long" type not "short" type
See https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1sdb_1_1CommandType.html
+ discussion here:
http://document-foundation-mail-archive.969070.n3.nabble.com/Type-of-CommandType-short-or-long-tt4299416.html
Important remark from Stephan:
"...the data type corresponding to UNOIDL LONG (i.e., 32 bit) is xs:int, not xs:long"
Change-Id: Ic8f027e8a5be96bdb2e5629b0ff1ef4830ef6c88
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114659
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'officecfg')
3 files changed, 5 insertions, 5 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/Writer.xcu b/officecfg/registry/data/org/openoffice/Office/Writer.xcu index de63ae8c2462..93152e609d0d 100644 --- a/officecfg/registry/data/org/openoffice/Office/Writer.xcu +++ b/officecfg/registry/data/org/openoffice/Office/Writer.xcu @@ -45,7 +45,7 @@ <value oor:separator=",">title,full_name,family_name,org,addr_line1,addr_line2,city,state,zip,country,home_phone,business_phone,email_1,</value> </prop> <node oor:name="DataSource"> - <prop oor:name="DataCommandType" oor:type="xs:short"> + <prop oor:name="DataCommandType" oor:type="xs:int"> <value>0</value> </prop> <prop oor:name="DataSourceName" oor:type="xs:string"> diff --git a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs index e2591ee34aea..786b0b4a9b09 100644 --- a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs @@ -67,7 +67,7 @@ <desc>Specifies the command to execute on the data source to retrieve the result set. This may be an SQL command or a table name or a query name.</desc> </info> </prop> - <prop oor:name="CommandType" oor:type="xs:short"> + <prop oor:name="CommandType" oor:type="xs:int"> <info> <desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc> </info> @@ -276,7 +276,7 @@ <value/> <!-- JB: Empty default inserted into empty property node. Remove if NIL was intended --> </prop> - <prop oor:name="CommandType" oor:type="xs:short"> + <prop oor:name="CommandType" oor:type="xs:int"> <info> <desc>Determines the exact meaning of Command. Valid values are: 0 - Command is a table name 1 - Command is a query name 2 - Command is an SQL command.</desc> </info> diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs index 1d54ace2d950..fde9c9457dc7 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs @@ -254,7 +254,7 @@ <desc>Specifies the name of the database table or query.</desc> </info> </prop> - <prop oor:name="CommandType" oor:type="xs:short"> + <prop oor:name="CommandType" oor:type="xs:int"> <info> <desc>Specifies whether the data comes from a table or a query</desc> </info> @@ -356,7 +356,7 @@ <label>Data table or query name</label> </info> </prop> - <prop oor:name="DataCommandType" oor:type="xs:short" oor:nillable="false"> + <prop oor:name="DataCommandType" oor:type="xs:int" oor:nillable="false"> <info> <desc>CommandType of the data source.</desc> <label>Data CommandType</label> |