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
How get listy of FieldDat...
by
eldonfsr
[
Today
at 02:31:16 am]
Finding List of Fonts & P...
by
J-G
[
Today
at 02:06:36 am]
Application triggers mess...
by
jamie
[
Today
at 12:37:30 am]
Star Wars Galaxian
by
flowCRANE
[
Today
at 12:27:35 am]
Fpcupdeluxe
by
ap3000
[August 07, 2026, 11:40:58 pm]
Gtk3 becomes default widg...
by
Bart
[August 07, 2026, 10:45:51 pm]
Create small language
by
DavidL
[August 07, 2026, 07:57:45 pm]
Lazarus for Windows on aa...
by
Martin_fr
[August 07, 2026, 07:41:36 pm]
Unleashed Pascal (async/a...
by
creaothceann
[August 07, 2026, 07:06:23 pm]
New Big Integer library i...
by
ad1mt
[August 07, 2026, 06:42:46 pm]
Identify network devices
by
LemonParty
[August 07, 2026, 03:03:16 pm]
how to connect to mariadb...
by
Mike.Cornflake
[August 07, 2026, 01:30:59 pm]
Automatic generation of *...
by
marcov
[August 07, 2026, 01:12:50 pm]
Multiple CodeAlign
by
marcov
[August 07, 2026, 11:52:54 am]
[SOLVED]SpeedButton Font
by
Petrus Vorster
[August 07, 2026, 10:29:10 am]
[SOLVED] Transparent Butt...
by
Petrus Vorster
[August 07, 2026, 10:05:53 am]
Lazarus undead repository...
by
Mike.Cornflake
[August 07, 2026, 09:44:08 am]
excel and word automation...
by
CM630
[August 07, 2026, 09:06:14 am]
Fast Canvas Library V1.05...
by
Gigatron
[August 07, 2026, 01:53:29 am]
MathParser and CrossGraph...
by
ypisareff
[August 07, 2026, 01:20:50 am]
[SOLVED] synEdit autoComp...
by
Weiss
[August 06, 2026, 09:19:53 pm]
TyControls: a custom-draw...
by
armandoboza
[August 06, 2026, 08:55:43 pm]
Random
by
Paolo
[August 06, 2026, 08:18:11 pm]
Using UTF8
by
ADMGNS
[August 06, 2026, 06:51:50 pm]
TFPHTTPServer extract par...
by
LemonParty
[August 06, 2026, 06:44:05 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] INSERT RETURNING an_id (Read 3296 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: 3466
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: 1820
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