-
Content Count
141 -
Joined
-
Last visited
-
Days Won
4
haentschman last won the day on August 24 2021
haentschman had the most liked content!
Community Reputation
68 ExcellentTechnical Information
-
Delphi-Version
Delphi 10.1 Berlin
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Hi... NOT with WITH: with TFDQuery.Create(self) do
-
Hi... ...+1
-
What is good replacement for FastReports?
haentschman replied to GreatDayDan's topic in General Help
...nothing. 😎 Why you want to change? -
Hi...😋 ...not query?
-
Hi...😎 ...always! Per table or better per database. 😉 Per database = the ID is complete unique. id varchar(10) not null primary key, ... never string! ID int not null primary key,
-
Hi...welcome here. First: ...why ACCESS and ADO? 🤢 ...😉 For the future: can you change the database? 😉 const ISQL = 'INSERT INTO JobCard (ID ,OrderNo ,JobName) VALUES ( :ID :OrderNo, :JobName)'; ...better than the ADD orgy. It is even better to store the SQL outside the "form" or "datamodule" as SQL file. 😉 ...i know. No problem. Learning by doing... 😉
-
wuppdi Welcome Page for Delphi 11 Alexandria?
haentschman replied to PeterPanettone's topic in Delphi IDE and APIs
Two month...What is the status? Which MVP? Imho 10% uses high-dpi. ...make a version without high-dpi. All waiting! Please... PS: why don't you publish it on github or something...? -
Hi...😎 ...which database?
-
👍 Remember: sometimes it is required to load the complete project, including DPR, DFM...then the ZIP format is your choice. Background: if the external server is closed, the thread here is incomplete.
-
Please at the next Thread: Attach files HERE...not at a external server ZIP, PAS, PNG ... thats all what you want.
-
https://www.sqlmanager.net/products/ibfb/datapump
-
Hi...😎 once...https://dbeaver.io/ What tool do you have with Interbase?
-
Hi... I hope this SQL is only for you in the development? For editing SQL by users...have you heard of SQL Injection? https://en.wikipedia.org/wiki/SQL_injection
-
Hi... try aDatabase.Starttransaction; ... aDatabase.Commit except on edatabaseerror do begin aDatabase.Rollback; end; end; Please use the "Code Tags" </>
-
Hi... via SQL or code?