Posts by Marcos Spirito • 75 points
6 posts
-
0
votes1
answer42
viewsQ: Postgresql - Foreign Key after import
I have a database in Firebird and I am passing the data it to Postgresql, so I made an application that reads the data from Firebird and inserts it into Postgresql. The database is from a…
-
4
votes1
answer4231
viewsA: When using Boleto.NET is it necessary to assemble the shipment file manually?
I believe that previous developer did not use the tool correctly. I currently use Boleto2net which is a refatoring of Boletonet https://github.com/BoletoNet/boleto2net, here is a quick explanation…
-
0
votes4
answers268
viewsA: Postgresql - Foreign Keys failing
Simplified example: === Bank structure === create table cabecalho( cab_id integer not null, cab_nomecliente varchar(50) not null, constraint pk_cabecalho primary key(cab_id) ); create table…
postgresqlanswered Marcos Spirito 75 -
1
votes4
answers268
viewsA: Postgresql - Foreign Keys failing
I found the problem, actually the system did not enter the raise Exception, but rather was returning NULL, because it always returned new in Trigger, Forwarding DELETE should return old. However…
postgresqlanswered Marcos Spirito 75 -
0
votes4
answers268
viewsQ: Postgresql - Foreign Keys failing
Hello, I have a SELL table and a VENDA_ITEM, the link between them is made via a Foreign Key that cascades and the update cascades. Well, in the VENDA_ITEM table there is a Trigger that runs before…
postgresqlasked Marcos Spirito 75 -
2
votes1
answer838
viewsQ: Windowsforms - C# - Reportviewer - Composite object
Good afternoon, I’m starting to develop reports using Reportviewer for Desktop applications using Windowsforms (C#). I’m having problems with objects composed by others, for example: class Produto {…