Re: [Interest] Issue with QSqlModel and QSortFilterModel

2019-04-18 Thread Konstantin Shegunov
On Thu, Apr 18, 2019 at 12:25 PM Bernhard Lindner < priv...@bernhard-lindner.de> wrote: > Did you write an issue tracker entry about that? > No, I haven't written a jira ticket, although I didn't get which issue you meant by "that". ___ Interest

Re: [Interest] Interest Digest, Vol 91, Issue 26

2019-04-18 Thread Giuseppe D'Angelo via Interest
On 18/04/2019 16:36, Roland Hughes wrote: The "filter" for SQL is the WHERE clause on the SELECT statement. A "filter" in the C++ world works on the result of the query. Worst case it doubles the memory and transfer resources required. When the goal is reduction of required resources, a filter

Re: [Interest] Issue with QSqlModel and QSortFilterModel

2019-04-18 Thread Giuseppe D'Angelo via Interest
Hi, On 18/04/2019 18:48, Scott Bloom wrote: Primarily because the user has the option of using wildcard or regexp, case insensitive or not, for multiple columns. So even if I upgrade Qt to the version that supports QregularExpression or REGEX, and also includes the wildcard to regex

Re: [Interest] Interest Digest, Vol 91, Issue 26

2019-04-18 Thread Roland Hughes
On 4/18/2019 5:00 AM, interest-requ...@qt-project.org wrote: Il 17/04/19 23:40, Scott Bloom ha scritto: I have a source model, which is QSqlModel based, and a filter proxy model. Its not possible to make the filter part of the SQL query.. been down that road… Mind elaborating? Why not?

Re: [Interest] [Development] Qt 6 Planning: Consideration of dropping support for UWP applications

2019-04-18 Thread Boudewijn Rempt via Interest
On donderdag 18 april 2019 15:29:33 CEST Pier Luigi Fiorini wrote: > Does this affect shipping Qt apps in the store? > I'm not a Windows expert but as far as I remember only UWP apps are > supposed to go there, but I can be wrong. > No -- you can also ship ordinary desktop Qt applications that

Re: [Interest] [Development] Qt 6 Planning: Consideration of dropping support for UWP applications

2019-04-18 Thread Pier Luigi Fiorini
Does this affect shipping Qt apps in the store? I'm not a Windows expert but as far as I remember only UWP apps are supposed to go there, but I can be wrong. Il giorno gio 18 apr 2019 alle ore 14:50 Oliver Wolff ha scritto: > Hi, > > as you might have heard, we are currently in Qt 6's planning

[Interest] Qt 6 Planning: Consideration of dropping support for UWP applications

2019-04-18 Thread Oliver Wolff
Hi, as you might have heard, we are currently in Qt 6's planning phase and thus checking things that have to be done to make Qt even better. Of course we also want to use this opportuniy to drop support for platforms that are no longer relevant in Qt's new environment. One of these platforms

[Interest] QML Audio loops

2019-04-18 Thread Marc Van Daele
Hello, I have the following QML that plays an audio file in an infinite loop. import QtQuick 2.11 import QtQuick.Window 2.11 import QtMultimedia 5.8 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Audio { id: noiseId loops:

Re: [Interest] Issue with QSqlModel and QSortFilterModel

2019-04-18 Thread Giuseppe D'Angelo via Interest
Il 17/04/19 23:40, Scott Bloom ha scritto: I have a source model, which is QSqlModel based, and a filter proxy model. Its not possible to make the filter part of the SQL query.. been down that road… Mind elaborating? Why not? Cheers, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com |

Re: [Interest] Issue with QSqlModel and QSortFilterModel

2019-04-18 Thread Bernhard Lindner
Did you write an issue tracker entry about that? > As a matter of fact I was facing a similar issue for my current project, but > in my case > I need to fetch the data over the network, from a DB as well, but one that I > don't have > direct access to. You can imagine I struggle(d) as you with

Re: [Interest] Issue with QSqlModel and QSortFilterModel

2019-04-18 Thread Konstantin Shegunov
On Thu, Apr 18, 2019 at 12:41 AM Scott Bloom wrote: > Any thoughts? > Hi! As a matter of fact I was facing a similar issue for my current project, but in my case I need to fetch the data over the network, from a DB as well, but one that I don't have direct access to. You can imagine I