summaryrefslogtreecommitdiff
path: root/connectivity
AgeCommit message (Collapse)AuthorFilesLines
2011-10-30fdo#33047: no data accessible if filename contains "?"Lionel Elie Mamane1-0/+3
2011-10-30factorise multiple SQL_ISRULEOR2 implementations into oneLionel Elie Mamane2-4/+7
2011-10-30Small fix OParseNode->OSQLParseNodeJulien Nabet1-1/+1
2011-10-30wrong logic in commentLionel Elie Mamane1-1/+1
2011-10-30Typo/spelling in commentLionel Elie Mamane1-1/+1
2011-10-30Errors in commentsLionel Elie Mamane2-2/+2
2011-10-30translate commentsLionel Elie Mamane1-3/+3
2011-10-30Return proper UNKNOWN_RULE instead of 0 for unknown ruleLionel Elie Mamane2-2/+2
also make unknown rule -1 to better separate it Before, an unknown rule actually went to 0 == OSQLParser::select_statement
2011-10-30Introduce combined 2&3 test for SQL TokenLionel Elie Mamane1-0/+2
2011-10-308.5 is not an integer, but an approxnumLionel Elie Mamane1-3/+3
2011-10-30overhaul / enhance / translate / ... commentsLionel Elie Mamane1-13/+13
2011-10-28tweak debug messages from commit 9b58d9353073c6535da0529cd9a48e435f043fa8Noel Power1-9/+2
2011-10-28leaking connection handleTerrence Enger1-2/+18
call SQLDisconnect; check returns from SQLDisconnect and SQLFreeHandle
2011-10-24Undo basis/brand split: Move SDK and ure-link, remove OOO_BASE_DIR and ↵Stephan Bergmann1-6/+1
BaseInstallation.
2011-10-18Undo basis/brand split: move program/classes/ from basis to brand.Stephan Bergmann1-3/+3
Also removed apparently unused UNO_JAVA_COMPPATH ProfileItem.
2011-10-07cppcheck scope reduction in connectivity/.. main.cxxPierre-André Jacquod1-2/+3
2011-10-05fix OString concatenationMichael Meeks1-1/+5
2011-10-05Use OString::getStr() nowTor Lillqvist1-1/+1
2011-10-05Resolves: fdo#34309 odbc fractional seconds are in billionthsCaolán McNamara2-2/+2
2011-10-05conversion operator gone nowCaolán McNamara2-4/+3
2011-10-04WaE: deletion of pointer to incomplete type; no destructor calledTor Lillqvist2-14/+12
Move the struct OSQLParser_Data definition to the sqlparse.hxx header. A somewhat ugly workaround for warning C4150: deletion of pointer to incomplete type 'connectivity::OSQLParser_Data'; no destructor called.
2011-10-04WaE: unreachable codeTor Lillqvist1-0/+2
2011-09-29Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const ↵Stephan Bergmann2-3/+3
*() in Mac OS X only code.
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann5-12/+12
2011-09-26cppcheck: delete unneeded variable in connectivity testmoz/main.cxxPierre-André Jacquod1-2/+0
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara2-1/+6
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold15-156/+156
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-19rework this in terms of read_uInt8s_AsOStringCaolán McNamara1-9/+6
2011-09-17use read_uInt8s_AsOString and comphelper::string::padToLengthCaolán McNamara1-23/+14
which allows us to simplify the read in DTable.cxx quite a bit
2011-09-17memcpy is of the same length as preceding memsetCaolán McNamara1-1/+0
2011-09-15Make this compile with MSVC and _DEBUGTor Lillqvist1-16/+4
2011-09-15We can't #define _HAS_ITERATOR_DEBUGGING 0 in just some of the source filesTor Lillqvist1-7/+0
It seems that _HAS_ITERATOR_DEBUGGING affects the layout of some classes, which of course means horrible breakage if some of the source files are compiled with it, the rest not. http://msdn.microsoft.com/en-us/library/aa985939%28v=vs.80%29.aspx http://connect.microsoft.com/VisualStudio/feedback/details/334315/has-iterator-debugging-0-causes-crash I will just have to fix the code in this handful of source files so that it compiles with _DEBUG defined. If I can be bothered.
2011-09-07shouldEscapeDateTime() controls ODBC syntax for date literals, not ## formatLionel Elie Mamane1-1/+1
2011-09-06[cppchecker] unread Variable warning suppressedPierre-André Jacquod1-3/+0
2011-09-06IBM jni.h has non-const SetByteArrayRegion final argCaolán McNamara2-2/+2
2011-09-03Fixes fdo#36594 Syntax error in SQL on "--" comment (and "//" and "/**/")Jenei Gábor1-1/+65
The SQL parser implementation does not handle comments. Temporarily remove "-- ..." and "// ..." end-of-line comments and "/* ... */" inline comments of a query and append comments after recomposition of the query. NOTE: The original comment positions are not preserved, all comments are appended to the query! Based on the original patch further development was done for inline comments and preserving comments' line order.
2011-08-29More #define _HAS_ITERATOR_DEBUGGING 0 to fix _DEBUG MSVC buildsTor Lillqvist1-0/+2
2011-08-24Don't do the undef-redef dance for "MINIMAL_PROFILEDISCOVER"Tor Lillqvist1-22/+24
2011-08-24Again, avoid debugging MSVC std::equal_range issueTor Lillqvist1-0/+5
2011-08-19convert tools::Config to rtl::OStringCaolán McNamara1-1/+1
2011-08-19drop it completelyCaolán McNamara28-6297/+0
2011-08-18registered but uninstalled database drivers break address book wizardCaolán McNamara1-2/+1
among other things undoubtedly. The idea was IIRC to drop adabas support, so lets not register the uninstalled components, and while we're at it not build it either.
2011-08-18Fixed build breakage.Kohei Yoshida1-1/+3
2011-08-15add a getToken wrapper for extracting a single token painlesslyCaolán McNamara1-6/+8
2011-08-15ByteString->rtl::OStringCaolán McNamara1-2/+2
2011-08-14=class OTableHelper: typo in private member name: refreshFor*gei*nKeysLionel Elie Mamane2-3/+3
2011-08-08callcatcher: ditch some more methodsCaolán McNamara2-14/+0
2011-08-05delete/delete[] mismatch, thanks to Terrence EngerCaolán McNamara1-1/+1
2011-08-04fixed typoTakeshi Abe1-1/+1
2011-08-01Deliver also static librariesTor Lillqvist1-0/+1