summaryrefslogtreecommitdiff
path: root/wizards
AgeCommit message (Collapse)AuthorFilesLines
2015-12-23Access2Base - Support of Hsqldb 2.3Jean-Pierre Ledure1-6/+8
Addition of CLOB and BLOB datatypes Change-Id: If42c0dbb1862f525d2a0a1abf98bd053543a3d3c
2015-12-13Access2Base - OutputTo action more conciseJean-Pierre Ledure1-11/+4
Simplified use of TableDefs and QueryDefs collections Change-Id: I87c5dcbbb1105c61324a0a89929f13ff86eab4a4
2015-12-13Access2Base - OutputTo action - support encoding in csv filesJean-Pierre Ledure2-11/+20
Change-Id: Icc4a631d67c3d4acf67de1cb38018c37602a16eb
2015-12-12Access2Base - More coherent use of the acUTF8Encoding constantJean-Pierre Ledure2-3/+2
Change-Id: Ibcffe9d8b85d552f53246a3ac751000673705ab3
2015-12-12Access2Base - Add default FilterOptions string in Calc export to csvJean-Pierre Ledure1-0/+19
Design choices: Sseparator = comma except if decimal point is comma in locale setting, then semi-colon Character set = Unicode (UFT-8) Change-Id: I11eb88bf44cedaddfb52d3570f427d9e0d26b4cc
2015-12-08Access2Base - DoCmd.OutputTo applicable to Calc, Excel and Text/csv formatsJean-Pierre Ledure3-14/+102
Database._OutputToCalc uses LO filters to export table and/or query data Change-Id: I69b15e76a490de32ec2cae73661f8ffd5f2b53b2
2015-12-08Access2Base - Dynamic combo list in PromptFormat()Jean-Pierre Ledure3-9/+18
to refelect various list of output formats in DoCmd.OutputTo() action Change-Id: Ibb95020efa2995cde168efbd516f9b1e49d832a3
2015-12-06Access2Base - First steps OutPutTo calc and csvJean-Pierre Ledure3-6/+16
+ bug correction on dlgFormat dialog - check user input Change-Id: I126f99dbc587342772a601df8b9dd03cfe4850ac
2015-12-06Access2Base - Option Explicit in UtilProperty moduleJean-Pierre Ledure1-1/+3
Change-Id: Iab982421be37e670201561b67cc66fb91d30de91
2015-12-05Access2Base - OutputTo binary fields as null fieldsJean-Pierre Ledure1-19/+21
Do not skip temanymore Change-Id: I6a1276959ab940eb44aedeab2f1c9cc7f71a0e1e
2015-12-05Access2Base - OutputTo HTMLJean-Pierre Ledure1-1/+2
Add <span> in the list of acceptable html tags Change-Id: I23c57ad1ef889fd511111f6d969feaafb9d0f5b8
2015-12-02Calculate substring indexes properly, avoiding an unnecessary ↵Damjan Jovanovic1-1/+1
IndexOutOfBoundsException. Patch by: me (cherry picked from commit d46d79f2261eb6be2fb74254f09520f5ef2baa88)
2015-11-29Access2Base - OpenQuery for action queriesJean-Pierre Ledure1-1/+9
Change-Id: I6691c01e8a078b14ca753c916c950c958953671f
2015-11-28Access2Base - OutputTo / html Add suffix default value in file pickerJean-Pierre Ledure1-0/+1
Change-Id: I80d97058221106ce87d696d8142b1e87430513d9
2015-11-24coverity#1326265 Explicit null dereferencedCaolán McNamara1-45/+27
Change-Id: I802e0f854cb5c560e7a860f2fcec0330e481da6c
2015-11-22Access2Base - OutputStringToHTML reviewJean-Pierre Ledure1-5/+6
Addition of "<a id= ...>" tag pattern Typos Change-Id: Id03e6224dc91249a9e6246ff94a80427ae76a86e
2015-11-15Access2Base - Return null values correctly in Recordset.GetRows methodJean-Pierre Ledure1-13/+6
Use .wasNull() rather than not trustable .IsNullable() in _getResultSetColumnValue routine Change-Id: I1d1783841414193347cca588209153b5aa9b56cd
2015-11-11Access2Base - Implements OutputTo table/query in HTML formatJean-Pierre Ledure5-15/+502
Functions to export database data contents into an HTML table with - template file - use of classes for CSS styling Change-Id: Ib62b103445ba47e2fe77c45109a62b2e49fcbbc5
2015-11-10#i126029# Base query wizard error due to missing quoting of table and column ↵Damjan Jovanovic1-0/+4
names During the Base query design wizard, com.sun.star.wizards.ui.FilterComponent.getFilterConditions() calls com.sun.star.wizards.db.SQLQueryComposer.getSelectClause() before its getFromClause(). However the getSelectClause() needs composedCommandNames which is populated only by getFromClause() in order to quote table and column names. Without this, table and column names that need quoting (spaces, special characters, reserved words) produce errors. (cherry picked from commit 046771cac8605e5826a150e4454eff332b65d517)
2015-11-10Use the UIConsts constants for resource IDs in...Damjan Jovanovic1-1/+2
main/wizards/com/sun/star/wizards/query/QuerySummary.java (cherry picked from commit 77ff55a4a1f25c1dc21d083cee43b4506bf91410) Change-Id: I538aa5761506d430bdbe70de03301f971f363e52
2015-11-10Use UIConsts constants for offsets to resource IDs in main/wizards.Damjan Jovanovic3-17/+20
(cherry picked from commit 95efcaf575dced8cc18f2ca9fb874d772ad23595) Change-Id: I8bb247c92f0326da916940f4fc7999d81998297a
2015-11-10Resolves: #i56289# no GROUP BY - COUNT from wizardDamjan Jovanovic2-18/+3
Implement the COUNT operator for GROUP BY in the Base Query Wizard, and delete some unused resource strings to make space for it. Found by: dtinazzi at easyasp dot it Patch by: me (cherry picked from commit 1f6546d6c0e6670d59e6beb05d15c80327634e6c) Change-Id: I6395566275cea6a33cdc64968b3b31aa17d61554
2015-11-09java: add some @Override annotationsNoel Grandin27-0/+65
Change-Id: I291db1dff5ab3ce40fda6f822a0e3ff1e6ef36c1 Reviewed-on: https://gerrit.libreoffice.org/19855 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-11-05java: remove ((unnecessary)) parenthesesNoel Grandin8-15/+15
Change-Id: I39fbe3a260c8dbfc203662c54eec4db064b88195
2015-11-05java: combine nested if statementsNoel Grandin13-173/+126
Change-Id: I0457b81668e9427a3c8d6a4af93438b7fb2bb7ba
2015-11-05java:avoid empty if statementsNoel Grandin1-3/+0
Change-Id: I9c66dd5331f422d8d6271157fece2b346d8b3756
2015-11-04coverity#1327212 UwF: Unwritten fieldCaolán McNamara1-12/+0
Change-Id: Ib12d8909430fceef654d6960a42439cc6ad5cd69
2015-10-28base new query wizard: fix confusion between display name and field nameLionel Elie Mamane2-6/+24
Change-Id: I75354ffea2daede55b34e4cf3321d57196be3d9b
2015-10-22coverity#1326403 Dereference null return valueCaolán McNamara1-0/+3
Change-Id: I1f191a2bc0139bada7603681eb0246de7dd15139
2015-10-22coverity#1326382 Dereference null return valueCaolán McNamara1-0/+3
Change-Id: I1c427c3d6cae2cf1798adcc29cd6f5f51eb2b49e
2015-10-22coverity#1326384 Dereference null return valueCaolán McNamara1-0/+3
Change-Id: Ibf3c2ffb78740d55a6e6e4e6c66fb71b5b1c4c85
2015-10-22coverity#1326397 Dereference null return valueCaolán McNamara1-7/+9
Change-Id: Iafb022cf3bbdbaa8a6b230cb60377d90e64fe142
2015-10-22coverity#1326173 Explicit null dereferencedCaolán McNamara1-2/+4
Change-Id: Icee3d9af9b9811e99afca49e2fe1b46fb4a85bca
2015-10-22coverity#1326381 Dereference null return valueCaolán McNamara1-16/+18
Change-Id: I86f5fee9bd77b741536816b6b4d1b6b520acba9e
2015-10-20coverity#1326559 Dereference before null checkCaolán McNamara1-1/+1
Change-Id: I1661514bf3002b79544615620843d1e535aabfce
2015-10-20coverity#1326575 Useless callCaolán McNamara2-2/+0
also coverity#1326574 Useless call Change-Id: Ida860ca8ed1475c88e90fc8aaf608c440453a9a0
2015-10-20coverity#1327466 UrF: Unread fieldCaolán McNamara1-10/+0
this class is unused since commit 8f60da0a29744d456cb074af05aeb4b40d1774fa Author: Noel Grandin <noel@peralex.com> Date: Wed Oct 14 11:49:19 2015 +0200 cid#1326681 DLS: Dead local store and clean up the return value, no need to return a TypeInfo when all we need is a boolean Change-Id: I8da388b861612acd925ef502904181d140e3abb5
2015-10-15coverity#1326409 Dereference null return valueCaolán McNamara1-2/+1
Change-Id: I960c4ad4ffe4f0e86f3d1f0fb364296f31bf9d92
2015-10-15cid#1326570 Unused valueNoel Grandin1-5/+1
Change-Id: I377671a552764e39f0f651c03949c99005084dcb
2015-10-15cid#1326569 Unused valueNoel Grandin1-1/+0
Change-Id: I7a945e0d299eaf20f8245c6697959885f4ef4ade
2015-10-15cid#1327023 to cid#1327077 SIC: Inner class could be made staticNoel Grandin2-3/+2
Change-Id: I41f89c4feefe4e012d72c663ebb9bbcb4aa7f163
2015-10-14java:remove unused importsNoel Grandin2-2/+0
Change-Id: I9529bf81dcfcd6761485af5d66789c1a9a83eeec
2015-10-14coverity#1327211 UwF: Unwritten fieldCaolán McNamara1-12/+0
Change-Id: Id210a19ea068aadcf1316a1c184769ba75e1cf70
2015-10-14coverity#1327212 UwF: Unwritten fieldCaolán McNamara1-4/+1
Change-Id: Id5ba80b5f2b9d4d201dce57ba165e1a70dc1ba3d
2015-10-14cid#1326683 DLS: Dead local storeNoel Grandin1-9/+0
Change-Id: I797faf679ec5c6a27570d1dd5ac0aa2c480cf56d
2015-10-14cid#1326682 DLS: Dead local storeNoel Grandin1-3/+0
Change-Id: I9dba5d1eb710ab21258ca19789274ca1b75e53ca
2015-10-14cid#1326681 DLS: Dead local storeNoel Grandin2-30/+6
and clean up the return value, no need to return a TypeInfo when all we need is a boolean Change-Id: I0909c2b96762870d753c22ab5056e718af56d75b
2015-10-14cid#1326680 DLS: Dead local storeNoel Grandin1-3/+1
Change-Id: I8e1ffdfe4d20664b7c97eb2a33b570aea9b19ccf
2015-10-14cid#1326131 'Constant' variable guards dead codeNoel Grandin1-12/+6
Change-Id: I832b2fc243404a6ae9796ad994e901880d3b9260
2015-10-09Related tdf#94557: Combo box entries are case-sensitive (sometimes)Julien Nabet1-1/+1
Revert partly http://cgit.freedesktop.org/libreoffice/core/commit/?id=76f33f10309b0ee384a75a7a854858b068d60495 author Julien Nabet <serval2412@yahoo.fr> 2015-03-16 21:31:23 (GMT) committer Caolán McNamara <caolanm@redhat.com> 2015-03-26 14:14:44 (GMT) commit 76f33f10309b0ee384a75a7a854858b068d60495 (patch) tree e12e3b6f2ca46cb9998b93b5c1bb3406408ad3cb parent 6c4100cf81e1678ff386549c0cdaa2f73a154ddc (diff) tdf#67990: Management of case in combobox See comments of tdf#94557 for more information Change-Id: I0432db0c3f76c20e55d8fecb69734952dc0cf53b Reviewed-on: https://gerrit.libreoffice.org/19260 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>