Posts by Dylan Bicho • 53 points
2 posts
-
1
votes0
answers60
viewsQ: Query return problems [Qt Mysql]
Considering the following table: ID : int Quantidade : smallint PrecoUnitario : float(5,2) I tested the following Query in Mysql Workbench: SELECT ID, SUM(Quantity * Precounitario) FROM test GROUP…
-
4
votes1
answer68
viewsQ: Problems to remove vector node
I have two classes: class CAlbum { private: QString Nome; /**< Nome do Álbum */ QString Descricao; /**< Descrição do Álbum */ QString Diretoria; /**< Diretoria onde se encontra o Álbum */…