- 02 Aug, 2017 1 commit
-
-
Marco Bubke authored
You can now write SqliteWriteStatement statement("UPDATE test SET name=?, number=? WHERE rowid=?", database); statement.write("see", 7.23, 1); and SqliteWriteStatement statement("UPDATE test SET name=@name, number=@number WHERE rowid=@id", database); statement.writeNamed("@name", "see", "@number", 7.23, "@id", 1); This is more type safe than using variants and performant too. Change-Id: Ie1ed2a6d326b956be5c4ec056214f3f5b1531f45 Reviewed-by:
Tim Jenssen <tim.jenssen@qt.io>
-
- 01 Aug, 2017 1 commit
-
-
Marco Bubke authored
We only will need the utf8 optimized SmallString for the indexer database. So we remove all other string bindings, QByteArray and QVariant. Change-Id: I4a77901a80b26bf292fc85df535c2ccf3a8ab52f Reviewed-by:
Tim Jenssen <tim.jenssen@qt.io>
-
- 27 Jul, 2017 2 commits
-
-
Marco Bubke authored
Change-Id: Ic31f61a477ad681652eeccdaa39f82970c57eb5a Reviewed-by:
Tim Jenssen <tim.jenssen@qt.io>
-
Marco Bubke authored
We don't need the threading anymore, so we removed it. The indexer will be run in its thread anyway, so an extra thread makes the code only more complicated. And we added namespaces. Change-Id: Ibcba306324763285cf653c28bb08122345e5f8da Reviewed-by:
Tim Jenssen <tim.jenssen@qt.io>
-
- 26 Apr, 2017 2 commits
-
-
Nikolai Kosjar authored
Change-Id: Ib0f98e528ecb619066e48cd75ee92de7cb61b74e Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Orgad Shaneh authored
Change-Id: Ie28ff761b0bae13c6ebdf7dd649cfbba28e0fc2c Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@qt.io>
-
- 19 Jan, 2016 1 commit
-
-
Tobias Hunger authored
* Update remaining files in src Change-Id: I1896f17fcf34f71c3310c87899fb5171b8e4afb1 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
- 10 Dec, 2015 1 commit
-
-
Orgad Shaneh authored
__thread/__declspec(thread) are compiler-dependent, not platform. Fix faulty define in the #else branch while at it. Change-Id: Ic7cc0e2c3bcf79e8f6e952ba92bcbc5f2ba5dccf Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com>
-
- 16 Jun, 2015 1 commit
-
-
Marco Bubke authored
Change-Id: I324e88c0d295114390c1fac2745c0d2d47637ece Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
- 03 Jun, 2015 1 commit
-
-
Marco Bubke authored
This is a partial result of wip/clang-oop. More will follow. This allows us to invoke the completion out of the Qt Creator process and thus safes us as against libclang crashes. At this point only the completion use case is supported. Some notes on the individual components: src/libs/codemodelbackendipc * library encapsulating the inter process communication handling * used by the backend application and in a follow-up change by the creator integration src/libs/3rdparty/sqlite * version 3.8.10.2 * dependency of codemodelbackendipc, will be used to storage indexing data, among others src/tools/codemodelbackend * the backend application tests/unit: * unit tests Change-Id: I91a48e27467581a22fb760a18d8eb926008fea60 Reviewed-by:
Alessandro Portale <alessandro.portale@theqtcompany.com> Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
-