Posts by Bruno Vinicius • 37 points
3 posts
-
1
votes1
answer108
viewsQ: How to implement a Thread to allow cancellation of Stringgrid fill in Delphi?
I load spreadsheets in a Stringgrid and then insert them in the bank, wanted a thread to allow to cancel this import, that is to cancel the completion of stringGrid, the button is "Inclicavel" as…
-
0
votes1
answer254
viewsQ: Insert using parameters in the C# application for the Oracle database error: ORA-01036: invalid variable name/number
I noticed that there are many questions about this error but none solved my case the connection works normally, there is the Insert method(): public bool Insert(ArrayList arrAlunos) { vsql = "insert…
-
2
votes1
answer2668
viewsQ: Sql runs on Oracle SQL Developer, but does not run on C#
vsql = @"INSERT INTO ALUNOS_ (UF, IDADE, TELEFONE, NOME_PAI, ENDERECO, EMAIL, NOME, CIDADE, NOME_MAE) values ('sp', 0,'','','','','','','');"; This SQL when running on oracle does the insertion but…