Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
Database
(Moderators:
FPK
,
Tomas Hajny
) »
[Solved] INSERT RETURNING an_id
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
FPC 3.2.4-rc1 available
by
Fred vS
[
Today
at 12:20:51 am]
Lazarus 4.6 on macOS 10.1...
by
mischi
[April 22, 2026, 11:38:19 pm]
Lazarus and FreePascal on...
by
mischi
[April 22, 2026, 11:35:20 pm]
is the LIST property from...
by
jamie
[April 22, 2026, 11:20:22 pm]
Using Lazarus to teach In...
by
EganSolo
[April 22, 2026, 11:06:38 pm]
AmigaOS can't run program...
by
Trenatos
[April 22, 2026, 11:04:54 pm]
Lazarus forum incompatibl...
by
swissbob
[April 22, 2026, 09:34:35 pm]
Call the Llama.cpp dynami...
by
LeP
[April 22, 2026, 07:28:54 pm]
Elite Arcade
by
Fred vS
[April 22, 2026, 07:07:16 pm]
Object Inspector - Start ...
by
Cascade
[April 22, 2026, 07:06:35 pm]
Font in StringGrid: canno...
by
jamie
[April 22, 2026, 06:14:58 pm]
504 Gateway Timeout
by
Joanna
[April 22, 2026, 05:38:37 pm]
FPC Unleashed (inline var...
by
440bx
[April 22, 2026, 04:34:08 pm]
Can /my/ AI help me with ...
by
schuler
[April 22, 2026, 03:47:39 pm]
Status of FPC 3.4.0 or FP...
by
marcov
[April 22, 2026, 02:36:18 pm]
Fast Canvas Library V1.05...
by
Gigatron
[April 22, 2026, 01:35:27 pm]
[Ignore-Me] TFPGList.Assi...
by
jamie
[April 22, 2026, 01:38:22 am]
Amigo programming languag...
by
paxscript
[April 22, 2026, 01:06:00 am]
IDE Editor (OS: Windows11...
by
d7_2_laz
[April 22, 2026, 12:38:55 am]
Little bit...
by
ASerge
[April 21, 2026, 09:51:32 pm]
CORE-MATH 32bits in Pasca...
by
schuler
[April 21, 2026, 09:32:39 pm]
Fpcupdeluxe
by
Thaddy
[April 21, 2026, 06:12:30 pm]
Problem with MariaDB and ...
by
OH1KH
[April 21, 2026, 03:26:54 pm]
Feature announcement: Fun...
by
Thaddy
[April 21, 2026, 01:47:33 pm]
IDE Coolbar
by
staratel20
[April 21, 2026, 01:00:32 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] INSERT RETURNING an_id (Read 2777 times)
ig
New Member
Posts: 12
[Solved] INSERT RETURNING an_id
«
on:
March 11, 2020, 10:05:15 pm »
I've followed the wiki
https://wiki.lazarus.freepascal.org/postgres#How_To
hoping to get this working:
Query.SQL.Text:= 'INSERT INTO myschema.films(film_name)' +
'VALUES(:film_name) RETURNING film_id;';
Query.Params.ParamByName('film_name').AsString:='Mission Impossible';
Query.Open;
ID:= Query.FieldByName('film_id').AsInteger;
However I always get the error message:
SQLQuery: field not found "film_id"
.
What am I missing here?
Lazarus 2.0.6
Database: PostGreSQL 12.1
OS: Windows 10
«
Last Edit: March 16, 2022, 12:06:26 pm by ig
»
Logged
Zvoni
Hero Member
Posts: 3361
Re: INSERT RETURNING an_id
«
Reply #1 on:
March 12, 2020, 09:10:01 am »
Quote from: ig on March 11, 2020, 10:05:15 pm
What am I missing here?
You don't have a column called 'film_id' which is integer primary key with autoincrement/autovalue?
Logged
One System to rule them all, One Code to find them,
One IDE to bring them all, and to the Framework bind them,
in the Land of Redmond, where the Windows lie
---------------------------------------------------------------------
Code is like a joke: If you have to explain it, it's bad
egsuh
Hero Member
Posts: 1777
Re: INSERT RETURNING an_id
«
Reply #2 on:
March 12, 2020, 09:38:23 am »
Try using quotations... i.e.
Returning "film_id";
I do not know exactly, but I experienced similar problem. PostgreSQL seems to require " " when the name contains _. Also it may be case-sensitive.
If this still do not work, try films."film_id".
Logged
ig
New Member
Posts: 12
Re: INSERT RETURNING an_id
«
Reply #3 on:
March 12, 2020, 10:50:51 am »
I isolated the case and got it working. Need to figure out why it's not working in a more complicated world.
Txs,
ig
Logged
ig
New Member
Posts: 12
Re: INSERT RETURNING an_id
«
Reply #4 on:
March 12, 2020, 11:08:39 am »
Some clarification
Before assigning the SQL.Text, make sure the query is closed. When this is not the case, subsequent calls to the insert query will result in the same id.
The insert sql needs to be self standing, i.e. in case a datasource is associated with it, will not work
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
Database
(Moderators:
FPK
,
Tomas Hajny
) »
[Solved] INSERT RETURNING an_id
TinyPortal
© 2005-2018