summaryrefslogtreecommitdiff
path: root/dbaccess
AgeCommit message (Collapse)AuthorFilesLines
2012-02-08add the "Send Feedback..." help menu itemIvan Timofeev5-5/+10
Signed-off-by: Thorsten Behrens <tbehrens@suse.com> Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen@canonical.com> Signed-off-by: Michael Meeks <MMeeks@suse.com>
2012-02-01remove glitch in sbase dialogKorrawit Pruegsanusak1-1/+1
Signed-off-by: Andras Timar <atimar@suse.com>
2012-02-01fdo#45453: use integers rather than booleansLionel Elie Mamane1-6/+6
for always-true and always-false tests. Some databases have poor or no support for booleans. Signed-off-by: Jan Holesovsky <kendy@suse.cz>
2012-01-23Fix fdo#44040 VIEWING: Crash when page preview after <f4> (data sources)Julien Nabet1-10/+8
Caolán fixed iterator management which was buggy. (thank you !) (cherry picked from commit 82a061079ae03f841713fd26c809d45621a59836)
2012-01-20fdo#44025: repair dbaccess::ORowSetCache::isLast() after matrix (re)fillLionel Elie Mamane1-2/+0
After filling matrix, *do* check if we hit the last row and update m_nRowCount accordingly. Else, a subsequent isLast() will return true on the last row of the prefetch window, even if it is not the last row of the data. Thus the algorithm: while ( ! pResultSet->isLast() ) { //do stuff pResultSet->next() } will stop too soon, which is exactly the symptom in fdo#44025. Signed-off-by: Michael Stahl <mstahl@redhat.com>
2012-01-18fdo#44813: make the refresh query filter NULL-safeLionel Elie Mamane2-22/+58
2012-01-18fdo#44813: don't replace NULLs given by the database by type-default valuesLionel Elie Mamane3-7/+7
It makes no sense, because non-nullable columns can have NULL value. E.g. in "foo LEFT JOIN bar ON condition", the non-nullable columns of "bar" when it has no row matching "condition". Even when we are about to insert/update a row, we should not put a hard-coded value (that just happens to be the one constructed by the C++ default constructor for that type) in non-nullable columns: there is no guarantee that this value makes sense in that database's context. The database may or may not have a default value set for that column. If it has, we should leave it up to the database to set it automatically. If it has not, an error *is* the right reaction. Another place where this substitution does damage is when we refresh a row. We use the values we have read from the primary key to select the row again. So we should not mangle those, else the select returns no row and we mistakingly think the row has been deleted.
2012-01-13use INCLUDE instead of SOLARINC, and after local includesEike Rathke1-1/+1
2012-01-02Clean non English strings in the codeLior Kaplan1-1/+0
we do translation differently. (cherry picked from commit 14c0e038c9c33dc59cbf6e5ec81d36779f28b004)
2011-12-30build qadevOOo only if OOO_JUNIT_JAR are set (add BUILD_TYPE)Rene Engelhard1-1/+1
2011-12-28fdo#44204: shrink the first column in the open dialog, remove unused flagsIvan Timofeev1-1/+1
2011-12-26missing icons in Index Design dialog fdo#38435Andras Timar1-1/+1
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-07Change "menues" to "menus"Michael T. Whiteley1-1/+1
2011-12-07normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara14-70/+56
2011-12-05Add missing spaceLior Kaplan1-1/+1
2011-12-03sfx2::FileDialogHelper: refactor construction:Michael Stahl5-14/+30
There are currently 2 different ways to specify what kind of file dialog should be created: the nDialogType and nFlags ctor parameters. Simplify that by using the nDialogType for the API specified variety, and the nFlags only for options that cannot be specified by the API. This allows to get rid of 3 constructors, and the following constants: WB_OPEN, WB_SAVEAS, WB_PASSWORD, SFXWB_PASSWORD, SFXWB_SHOWSTYLES
2011-12-03sfx2::FileDialogHelper ignores WB_3DLOOK, WB_STDMODALMichael Stahl4-8/+8
2011-12-03sfx2::FileDialogHelper: remove use of WB_OPENMichael Stahl3-5/+6
This can really be derived from the dialog type, don't duplicate it.
2011-12-03remove unused #include sfx2/filedlghelper.hxxMichael Stahl3-3/+0
2011-12-02Remove extra spaces from strings for translationLior Kaplan1-1/+1
2011-12-02Typo fix: Maybe -> MaybeLior Kaplan1-1/+1
2011-12-01Check length before operator[]August Sodora1-1/+1
2011-12-01Remove uses of charAtAugust Sodora1-2/+2
2011-11-30add constLionel Elie Mamane1-1/+1
2011-11-30Success to load JDBC driver is still info, not an errorLionel Elie Mamane3-5/+8
2011-11-30Failure to load JDBC driver is an error, not infoLionel Elie Mamane2-2/+2
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-28ByteString->rtl::OUStringToOStringCaolán McNamara1-3/+3
2011-11-28ByteString::GetToken->comphelper::string::getTokenCaolán McNamara1-3/+4
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-549/+0
2011-11-27remove pch from the include listNorbert Thiebaud8-8/+0
2011-11-27remove include of pch header in dbaccessNorbert Thiebaud311-609/+0
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud8-15/+0
2011-11-27s/infomation/information/Korrawit Pruegsanusak1-1/+1
2011-11-26Remove some uses of OUString::setCharAtAugust Sodora3-6/+6
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-1/+1
2011-11-25gsl_getSystemTextEncoding -> osl_getThreadTextEncodingDavid Tardon5-10/+10
2011-11-23fdo#32347: reenable ADO URL helper UILionel Elie Mamane3-23/+4
cleanup obsolete DISABLE_ADO/WINDOWS_VISTA_PSDK logic
2011-11-19remove [Byte]String::EraseAllCharsCaolán McNamara1-2/+3
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud1-4/+4
This allow to run make in a module wihtout the need to source Env.Host.sh.
2011-11-15 Address data source ordering x#62860Michael Meeks1-1/+1
information from the apply file: patchname: addrbk-datasrc-ordering.diff issues: author: michael section: Misc comment: Address data source ordering x#62860 sectioncomment: git log from build repository: commit bfa619922b90a021e5d856333dd398512389ad67 Author: Jan Holesovsky <kendy@suse.cz> Date: Mon Jun 21 22:11:19 2010 +0200 Update patches to dev300-m83. * [...] commit 256381886a238d80b9ddab795b500576d92404cc Author: Jan Holesovsky <kendy@suse.cz> Date: Wed May 19 12:16:00 2010 +0200 Updated patches do dev300-m77. * [...] commit df913735fd729978d20f0282fe32d14bf597891f Author: Jan Holesovsky <kendy@suse.cz> Date: Mon May 17 01:21:36 2010 +0200 Patches adopted to the tabs -> spaces fixes + trailing whitespace cleanup. * [...] commit c6847e9b022184e98942391a2b5711c31eb25ba3 Author: Jan Holesovsky <kendy@suse.cz> Date: Fri May 14 14:32:23 2010 +0200 Convert tabs to spaces in all the code introduced by the patches. * [...] commit 09774df8a62bf886c78c0f84d56b2d518ae8107e Author: Jan Holesovsky <kendy@suse.cz> Date: Tue Apr 29 14:04:53 2008 +0000 Src680/ * Some cleaning action: src680/* -> dev300/ * patches/dev300/gstreamer-sd.diff, patches/dev300/gstreamer-slideshow.diff, patches/dev300/letter-wizard-resource-id.diff: Moved to patches/gstreamer. * patches/dev300/mono-build.diff: Moved to patches/mono. * patches/dev300/sc-hacky-handle-boolean.diff, patches/dev300/vba-workbook-worksheet-events.diff: Moved to patches/vba. * patches/src680/unittesting-*: Moved... patches/unittesting/*: ...here. * patches/src680/*: Moved... patches/dev300/*: ...here. * patches/dev300/apply, patches/Makefile.am: Add the unittesting subdir, remove src680.
2011-11-15Remove some unused headersJoseph Powers3-381/+0
2011-11-15Remove some unused Precompiled Header logicJoseph Powers6-1659/+0
2011-11-14Simplified some uses of css.configuration.theDefaultProvider.Stephan Bergmann2-16/+7
* Retro-added new-style UNOIDL singleton specification for it, for easy instantiation. * Plus new comphelper::getComponentContext to map from XMultiServiceFactory to XComponentContext.
2011-11-14Removed comphelper -> unotools processfactory.hxx duplication.Stephan Bergmann5-5/+1
2011-11-11Heavily simplified utl::ConfigManager.Stephan Bergmann3-25/+10
2011-11-08remove empty Text [ x-comment ] entriesAndras Timar1-1/+0
2011-11-02Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/coreMichael Stahl2-132/+453
2011-10-31move CloseVeto from dbaccess to unotoolsMichael Stahl5-257/+2