Posts by Rafael Carmanini • 43 points
3 posts
-
1
votes1
answer504
viewsA: ADO Command / Parameter in Excel (VBA)
Hello, The problem has been solved. I was not removing the command object parameters from the old queries, so the object performed certain action with incompatible data. I added the following…
-
2
votes1
answer504
viewsQ: ADO Command / Parameter in Excel (VBA)
Hello, I am developing a code in VBA in Excel 2010 in conjunction with a database Acces 2010. In this code, I use ADO Command to manipulate the data in the database, but I am receiving an error…
-
1
votes2
answers189
viewsA: Search for results in related tables
Hello, Try to use this code: SELECT * FROM tabela INNER JOIN tabela_usuario ON tabela_usuario.id = tabela.created_by WHERE tabela.status='open' ORDER BY tabela.priority DESC…