I'm Migrating my Delphi 2006 application to Delphi 10 Seattle. I have used TDatabase, TQuery and TUpdateSQL components in my application. When I replace these components with TFDConnection, TFDQuery and TFDUpdatesQL. I'm getting error SQL3008IN.. Please let me know how to migrate DB components in Delphi 10 Seattle. Im using DB2 database.
Delphi 10 Seattle Database connection (DB2)
546 Views Asked by Uma Maheswari At
1
There are 1 best solutions below
Related Questions in DELPHI
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- How to catch WM_DEVICECHANGE in a control other than TForm?
- show information with Rolling / moving messages delphi xe7
- What is the different between "Console target" and "GUI target" in DCC32 option?
- How to add new online ressources to RAD Studio help system
- C# and Delphi code have different behaviour when importing unmanaged dll
- Loop through records on a cxgrid and update a field/column
- Delphi 7 - Save to a Specific .INI Files Name
- TImagelist for large images
- how to modify a function so it returns an array of strings
- Checking for internet connection in runtime
- How can I make the main form align correctly after my control height is autosized and then I maximize the form?
- fetch data from web service to dataset in Delphi
- Load candlestick data from file
- Infinite loop in parsing a string using pointer math
Related Questions in DB2
- How to grant privileges to current user
- Drop DB2 database if exist
- DB2, Hibernate, JPA: Schema does not exist
- Can you check for a DB2 license in C#?
- DB2 Join Query that Maximizes Column
- How to access a Row Type within an Array Type in DB2 SQL PL
- IBM DB2 native encryption applied on live database
- Using an ODBC connection in Access get retrieve data from DB2
- join 2 tables and get some columns from 1st table and max timestamp value from second table
- How to connect to DB2 SQL database with node JS?
- TRANSLATE not working inside XMLAGG
- Cannot initialise HikariCP pooled connection, Failure in loading native library db2jcct2
- published reports don't work - Database logon failed Error
- 1 Working Day Back In SQL DB2
- In java with DB2 parallel process: I got Deadlock Exception :DB2 SQL Error: SQLCODE=-911, SQLSTATE=40001, SQLERRMC=2, DRIVER=3.59.81
Related Questions in DELPHI-10-SEATTLE
- Proper way to use forms with the same name
- Change MagnifierGlass Height and Width
- Extracting code from TWebAction for Synchronize()ing in main thread?
- Overbyte NamedPipes; Send msg on a different thread
- Resize images and save output
- Delphi and attachment files in MS access database
- How to scroll Firemonkey TListBox without capturing focus in its controls?
- How works the OnMouseDown event on my MainForm with Firemokey?
- Delphi FireDAC error when loading SQLite3.dll
- Lose milliseconds on DateToISO8601
- Security Warning while using Delphi 10 Seattle
- Multiline hints in Firemonkey
- How return the complete path of java.exe file ignoring java version installed?
- Is there a way to execute only code from a unit from a big exe placed on shared drive?
- is there a way to obtain the same result than set compiler flags at runtime for PEFlags?
Related Questions in FIREDAC
- Datasnap\FireDAC: Query executed twice
- Delphi XE7 TFDTable View RowID error
- Setting "Server" programmatically with a TFDConnection
- Application closing when Activating the Connection on FireDAC
- Apply changes using TFDJSONDeltasApplyUpdates
- Query Status "Suspended" using FireDac with SQL Server
- Firedac multiparametric query with macro
- Delphi - View with parameter
- FireDac get the count of rows affected by FDQuery.execsql command
- Where is FireDAC pbByNumber defined?
- How to filter FireDAC dataset by a DATE value constant?
- How do I query number of files using Delphi firedac
- Delphi Delete all records from FDTable
- FireDAC: Saving Time to SQLite DB
- Why TFDMemTable is slower than TClientDataSet?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
That error,
SQL30081N(note it's a1, and not anIat the end), indicates some sort of network communication error. Have a look at this article (or this one) to see what the sub-code you are getting means.