summaryrefslogtreecommitdiff
path: root/include/connectivity
AgeCommit message (Collapse)AuthorFilesLines
2013-12-21fdo#72916 correct rounding of time part of DateTimeLionel Elie Mamane1-1/+1
Change-Id: I135478755f9e5a844119129b470fef8de2cd0409
2013-12-16janitorial: correction in commentLionel Elie Mamane1-1/+1
Change-Id: I8a3dd1a368c1c1eb327c818f5053545f3ff44b09
2013-12-07fdo#72267 boolean_test is subsumed by general case "foo IS [NOT] bar"Lionel Elie Mamane1-1/+1
Change-Id: Ie9666b1c8878dd26593629b4b64d74b7448f98c1
2013-12-06Clean up includes of comphelper/stl_types.hxxStephan Bergmann3-3/+0
Change-Id: I00a8e794189d17ad91a90beb9ce6cb89b7bab2aa
2013-12-06Get rid of DECLARE_STL_MAPStephan Bergmann1-1/+4
Change-Id: Ifbda934a89087fcc1c031978d3e5b5783722b328
2013-12-06Get rid of DECLARE_STL_USTRINGACCESS_MAPStephan Bergmann3-5/+15
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
2013-12-05Get rid of DECLARE_STL_STDKEY_SETStephan Bergmann1-1/+2
Change-Id: I4817694d183d525fa5a29eb9693a20d491549e5d
2013-11-09fdo#65108 inter-module includes <>Norbert Thiebaud53-112/+112
Change-Id: I338b2f923a31058dc7a3a9a4dcefba52109aa3b0
2013-10-23fixincludeguards.sh: include/c*Thomas Arnhold54-160/+160
Change-Id: Icba422d99836518a1b662b15144bc9334bed1473
2013-10-02Fix warnings in sqlflex.l, sqlbison.yStephan Bergmann1-1/+1
Change-Id: I6c6b9452014940e09f8f4b7466c5a5f562c9fff5
2013-09-25drop worthless _VECTOR_/_MAP_ header guardsCaolán McNamara1-2/+0
Change-Id: I54be19847b8fb609f0b08a528cc06dbae9f579d5
2013-09-13Don't clobber argument on failureLionel Elie Mamane1-1/+4
Change-Id: I709305d4ec3c37d3fc1c2c911551174f8cfbb883
2013-09-12Remove sal_char* from dbexception and some cleanup.Andrzej J.R. Hunt1-43/+11
Change-Id: I81909e4542bd5e8d1f8ae182c3c17f9bbea9745d Reviewed-on: https://gerrit.libreoffice.org/5881 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-09-12Update implementations of ColumnLocate::findColumn to throw on invalid column.Andrzej J.R. Hunt1-0/+13
Change-Id: I7a9354ecd35a70a005c6c50e38d27de9b33332bd Reviewed-on: https://gerrit.libreoffice.org/5922 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-09-01Remove some unused code from unusedcode.easyMarcos Paulo de Souza1-6/+0
Change-Id: Ic3e96eebbb914c5b905a8c58532ead9cb01dd41d Reviewed-on: https://gerrit.libreoffice.org/5721 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-08-20Rearrange createStandardTypePart to not include extraneous parameters.Andrzej J.R. Hunt1-3/+0
We specifically only want the type identifier but not any autoincrement/ nullabe parameters which have to be modified separately in some databases (e.g. firebird). Change-Id: I8b33bae8ce4aaf5f325c4156955140ad4fb17db7
2013-08-19Split type-description out of createStandardColumnPart.Andrzej J.R. Hunt1-0/+16
createStandardColumnPart returns a string that is usable in table creation, the type descriptor (e.g. CHAR(N)) is also useful in column-type altering statements, hence this is split into a separate function. This is needed primarily in the firebird driver where column-type alter statements are in a different form to most dbs. Change-Id: If44554f979f6dd14bf679455978f3f0b44784bf5 Reviewed-on: https://gerrit.libreoffice.org/5432 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-08-19Rename SOLAR_JAVA to ENABLE_JAVA and HAVE_FEATURE_JAVATor Lillqvist1-2/+4
Change-Id: Ib451bdb3c1c2ca42347abfde44651d5cf5eef4f3
2013-07-15Fix build.Jan Holesovsky1-1/+1
Change-Id: Ia08b6e87b5be3ca2994e0c5fbc6b91c1a800208e
2013-07-11ORDER BY columns are prioritarily *SELECT* columnsLionel Elie Mamane1-0/+8
as opposed to *table* columns, and notwithstanding HSQLDB 1.8 (our embedded database) bugs. Actually, supporting ORDER BY on non-select (but table) columns is OPTIONAL for DBMSs (but quite common) Change-Id: I6725dfda36b09429a78262bff6f3d3e3dd9032b6
2013-07-10Further fallout from the connectivity SQL parser changesTor Lillqvist3-0/+157
A couple of headers now need to be public because they are indirectly included in other modules. Change-Id: Id01945197b67183a0a042e854289875ae147a0eb
2013-07-10make SQL grammar Generalised LRLionel Elie Mamane1-3/+3
This fixes parsing failures, like e.g. warn:legacy.osl:30429:1:dbaccess/source/core/api/SingleSelectQueryComposer.cxx:783: OSingleSelectQueryComposer::getColumns: could not parse the column retrieval statement! when opening query "Balance" of https://bugs.freedesktop.org/attachment.cgi?id=71964 OTOH, since we have reduce/reduce conflicts, we might have true ambiguities in our grammar. This change makes the parsing fail in the presence of full-expression ambiguities instead of making a ~arbitrary choice. Change-Id: I88574da91045dd52f198f193c78d144302f298a4
2013-06-28remove ::connectivity::to(Date)?(Time)?String; same as DBTypeConversion::*Lionel Elie Mamane1-5/+0
Change-Id: I5f2ef1ecff7e2071b55c27b9dc60e7d92950435c Reviewed-on: https://gerrit.libreoffice.org/4563 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-06-27new dbtools::DBTypeConversion::toTimeStringS for time in second precisionLionel Elie Mamane1-0/+2
(no fractional second) Change-Id: I8bf448783b24fceae9a750f40887d6296999b203
2013-06-04include: convert <type> here tooMichael Stahl2-4/+4
sed -i "s,<type>\([^<]\+\)</type>,\1," Change-Id: Ibdaeb2c396ad29ced05716142b38c6a1c3e49847
2013-06-04include: convert type scope="foo"> here tooMichael Stahl2-13/+13
sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I7eb32acd44132de79cc7ac1e7f78b43bb4814d14
2013-06-03fdo#46808, Convert comphelper::ComponentContext in forms moduleNoel Grandin1-7/+2
Change-Id: I8a9913d964633381f00c0a4885cc655805fa1974
2013-06-03fdo#46808, Convert ComponentContext in connectivity,extension..Noel Grandin3-16/+7
...modules. Change-Id: Ie61976dc12b514bb85ca42496c0d9173a1c56264
2013-04-26remove never-generated "predicate_check" entryLionel Elie Mamane1-1/+0
Change-Id: Ib3957fbadf6bfebfaabd5bef09aaf7ab21862cd6
2013-04-26QueryDesign: in criteria, remove matching column_ref in simple expressionsLionel Elie Mamane1-2/+3
Basically, in first children of infix predicates in search_conditions Change-Id: I0e2f8fbdde023b088f33d2e2fcbd41110f0e02a8
2013-04-26QueryDesign: in criteria, remove column_ref when table *and* column name matchLionel Elie Mamane2-0/+5
As opposed to only the column name Change-Id: I261d13f23214f950daa55a5b63cd486e59a0e127
2013-04-26sal_Bool -> boolLionel Elie Mamane1-2/+2
Change-Id: I157e0e84cbc9832dd863607b8f52359596b51c8c
2013-04-23execute move of global headersBjoern Michaelsen53-0/+8293
see https://gerrit.libreoffice.org/#/c/3367/ and Change-Id: I00c96fa77d04b33a6f8c8cd3490dfcd9bdc9e84a for details Change-Id: I199a75bc4042af20817265d5ef85b1134a96ff5a