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
Weird error
by
n7800
[
Today
at 02:31:23 am]
How to merge multiple cla...
by
cdbc
[
Today
at 02:16:37 am]
I hope FreePascal can sup...
by
440bx
[
Today
at 02:08:06 am]
Remote desktop software i...
by
Boleeman
[
Today
at 12:59:14 am]
AI assisted translation o...
by
schuler
[April 13, 2026, 10:41:29 pm]
FPC Unleashed (inline var...
by
Fibonacci
[April 13, 2026, 09:21:04 pm]
fp-h2pas: New C header tr...
by
Gustavo 'Gus' Carreno
[April 13, 2026, 06:32:22 pm]
Nezplug Library Player
by
Gigatron
[April 13, 2026, 04:15:33 pm]
Eschecs (UCI chess GUI) 5...
by
Roland57
[April 13, 2026, 04:10:12 pm]
[ANN] fpGUI Toolkit v2.0....
by
cdbc
[April 13, 2026, 03:14:21 pm]
Lazarus Bugfix Release 4....
by
dbannon
[April 13, 2026, 01:52:18 pm]
Strange happenings with T...
by
jamie
[April 13, 2026, 12:41:42 pm]
Little bit...
by
jamie
[April 13, 2026, 12:17:43 pm]
Necromancer's Dos Navigat...
by
dbannon
[April 13, 2026, 11:03:26 am]
Can't pass string to TEdi...
by
cdbc
[April 13, 2026, 10:13:44 am]
Fixed Bzip2 unpacker from...
by
domasz
[April 13, 2026, 08:09:54 am]
Ann: DeCoperators
by
Thaddy
[April 13, 2026, 07:37:29 am]
Bad Sandwich
by
Guva
[April 12, 2026, 09:55:25 pm]
ZeosDB and sqlite3
by
dseligo
[April 12, 2026, 09:06:22 pm]
The ever re-appearing /= ...
by
Thaddy
[April 12, 2026, 08:07:09 pm]
Some Lazarus Graphics Rel...
by
Boleeman
[April 12, 2026, 03:45:30 pm]
Some Lazarus Utils N Stuf...
by
Boleeman
[April 12, 2026, 03:39:45 pm]
Ann: Deinline: a de-inlin...
by
Fred vS
[April 12, 2026, 03:17:40 pm]
BAScript - Simple scripti...
by
Ñuño_Martínez
[April 12, 2026, 01:00:21 pm]
NiceGrid component for La...
by
Alexandr R
[April 12, 2026, 11:02:54 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] INSERT RETURNING an_id (Read 2765 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: 3354
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: 1775
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