On Fri, Dec 3, 2010 at 15:56, Wolfgang Rohdewald <span dir="ltr"><<a href="mailto:wolfgang@rohdewald.de">wolfgang@rohdewald.de</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On Freitag 03 Dezember 2010, KONTRA, Gergely wrote:<br>
> Hi all!<br>
><br>
> I suspect QSqlTableModel.rowCount cannot return numbers above<br>
> 256.<br>
<br>
</div>rowCount is not the number of rows in the table but in the model,<br>
AFAIK. Use fetchMore() to load more.<br></blockquote><div class="im"><br>Thats not logical. <a href="http://doc.trolltech.com/4.7/qsqltablemodel.html#rowCount">http://doc.trolltech.com/4.7/qsqltablemodel.html#rowCount</a> doesn't mention what is exactly rowCount, and one should expect the number of rows based on the name...<br>

<br>fetchMore will then fetch all rows. I don't want that, just would like to know the number of rows, or just load the last record.<br><br>
> And can somebody tell me why this code is this painfully<br>
slooow?<br>
<br>
</div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
you execute 300 transactions. If you use db.transaction()<br>
after db.open() and db.commit() after model.submitAll(), this<br>
is only one transaction and much faster.<br></blockquote></div>Sounds reasonable, thanks.<br>