Hi Folks
I'm new to the forum and am attempting to learn how to interface a Delphi application with a Postgresql database.
The database has been mostly completed and works well through SQL.
I have created a Delphi interface holding the components needed to add one field of data to a table in which I need a serial ID column.
Without the serial ID column I can insert a new value into the database with no problems.
Adding the serial column gives me an error stating that the serial column needs a value.
How do I get the serial column to generate?
Here's the code generated by Delphi.
Basic
insert into p_id.p_id (process_name)
values (

rocess_name)
Bob