summaryrefslogtreecommitdiff
path: root/connectivity/Library_firebird_sdbc.mk
AgeCommit message (Collapse)Author
2019-09-23do not require $(SRCDIR) in every gb_Library_set_precompiled_headerLuboš Luňák
Change-Id: I7b3a22584bb2e4d501f509ffcd80929feed23a4c Reviewed-on: https://gerrit.libreoffice.org/79360 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2019-06-14loplugin:logexceptionnicely in configmgr..connectivityNoel Grandin
Change-Id: I1cf8250dba63b744f882e54e9eb572884f292975 Reviewed-on: https://gerrit.libreoffice.org/74020 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-07-21migrate to boost::gettextCaolán McNamara
* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl * all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string") * ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching MODULE .mo files * UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui goes from l10n target to normal one, so the res/lang.zips of UI files go away * translation via Translation::get(hrc-define-key, imbued-std::locale) * python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there to keep finding the .hrc file uniform) so magic numbers can go away there * java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun::star::resource::OfficeResourceLoader com::sun::star::resource::XResourceBundleLoader com::sun::star::resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
Uwinapi is discontinued. Change-Id: I063b4d0d8fab2d60de168e960a63b8181158ac01 Reviewed-on: https://gerrit.libreoffice.org/23198 Reviewed-by: David Ostrovsky <david@ostrovsky.org> Tested-by: David Ostrovsky <david@ostrovsky.org>
2017-01-14tdf#70433 tdf#104734 implement sdbc XClobTamás Bunth
And use it in getClob, so LO can display clob values like the return value of the built-in List function. Change-Id: I395016e945dbeb2c6bb3737b6345d40ff9f48089 Reviewed-on: https://gerrit.libreoffice.org/32938 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tamás Bunth <btomi96@gmail.com>
2016-08-18tdf#69949 GSoC Firebird implement autoincrementWastack
Change-Id: I6fe08b575f01b986f0a3c96b341f254279427b68 Reviewed-on: https://gerrit.libreoffice.org/28062 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Jenkins <ci@libreoffice.org>
2014-06-04update_pch: add a bunch of pch filesThomas Arnhold
connectivity: 3m52s -> 2m47s cppcanvas: 28s -> 13s cppuhelper: 20s -> 14s dbaccess: 2m38s -> 2m01s hwpfilter: 16s -> 13s sot: 21s -> 16s Change-Id: I49286bfe6be73dd1b861be632b95e17a99e82f8a
2013-11-09make firebird-sdbc an experimental featureLionel Elie Mamane
Change-Id: I0f2453e23d18597cfe1ad2a4cd4902b15f0a8f7d
2013-09-06Extend OIndexesHelper::dropObject to use correct DROP INDEX. (firebird-sdbc)Andrzej J.R. Hunt
Firebird's DROP INDEX statements only need to contain the index name, including the table name causes an error. Change-Id: I5b61d82bda7176148f7849e31bd050e025f84e02
2013-08-21Add custom wrapper for OKeysHelper.firebird. (firebird-sdbc)Andrzej J.R. Hunt
Keys are handled as a constraint in firebird so need different handling when dropping to other dbs. Change-Id: Ifc4929a1ee7477260b9a279487d44edbb525a17a
2013-08-20Add skeleton sdbcx Users/User implementation. (firebird-sdbc)Andrzej J.R. Hunt
Change-Id: I8a64f9776a618691fa61aa0e71067a0eb6176811
2013-08-12Create Catalog to deal with sdbcx details. (firebird-sdbc)Andrzej J.R. Hunt
Change-Id: I521db652157e6b6da79e70f3731b6eddfc2bab1d
2013-08-11Add skeleton Columns. (firebird-sdbc)Andrzej J.R. Hunt
Change-Id: If58976bbb8a64d5092fcf33d3d09cdde145ecfe1
2013-08-11Add sdbcx.Table (firebird-sdbc)Andrzej J.R. Hunt
Change-Id: Iae9a4d1292d0dcd2da17c5a5552a3986b306a550
2013-08-11First chunk of skeleton sdbcx.Container. (firebird-sdbc)Andrzej J.R. Hunt
Change-Id: Ic92c4d13b0ed9aba622d3a2459f9677d8cce3245
2013-07-31Remove unnecessary F- prefix for firebird-sdbc files.Andrzej J.R. Hunt
Change-Id: I6574ef7fd1c26770a74b2d1f2b0d997fcca97779
2013-07-23Move Statement_Base into it's own file (firebird-sdbc).Andrzej J.R. Hunt
This is in preparation of cleanly separating the code shared by PreparedStatment and Statement from the code unique to either of those classes. Change-Id: I419668044e67b25d492a381acab9ee9b1acce7ce
2013-07-22Move sqltype identification into Util (firebird-sdbc).Andrzej J.R. Hunt
Change-Id: I2e3068bf46555fea63c62bc1abc8a467c588a8b5
2013-07-21Implement the first parts of XBlob. (firebird-sdbc)Andrzej J.R. Hunt
Change-Id: Iebb80168ec6fb941ca936834ed2275a598dff55e
2013-07-19Remove duplicate propertyids.[hc]xx.Andrzej J.R. Hunt
Change-Id: I488cea6e34180d46fecfc169e4368159c67bb0d4
2013-07-16Further firebird-sdbc windows build fixes.Andrzej J.R. Hunt
Change-Id: I9cb0bbd45b19cb9ef6aa4b8f6d0538484060c6a0
2013-07-16Rename firebird-sdbc to firebird_sdbc to compile with latest master.Andrzej J.R. Hunt
Change-Id: I56e3180095c8a1fa660e1e27588320bdce972952