My Sales table has a Code field with auto-increment and I need to retrieve this code to insert into an associative table.
string sql = $"INSERT INTO VENDA(NRO_VENDA,DATA_VENDA,VALOR_TOTAL_PRODUTOS,VALOR_ACRESCIMO,VALOR_DESCONTO,VALOR_TOTAL_VENDA,CODIGO_CLIENTE)VALUES({entidade.nroVenda},'{entidade.DataVenda}',{entidade.ValorTotalProdutos},{entidade.ValorAcrescimo},{entidade.ValorDesconto},{entidade.ValorTotalVenda},{entidade.Cliente.Codigo})";
ConnectionFirebird.ExecComand(sql);
My table Venda
has the Codigo
field with auto-increment in which I want to retrieve this value.
Ref: I'm looking for something like Mysql's Last_Insert_Id