Delphi Firedac not recognizing new ALTER feature in sqlite3
问题 SQLite3 release 3.25 and higher allows me to "ALTER TABLE myTable RENAME COLUMN oldColName TO newColName" . But I get an error "near RENAME" when I execute this in my Delphi code, but it works running the new sqlite3.dll from the command line or with another utility. This works: HerdConnection.ExecSQL('ALTER TABLE myTable RENAME TO NewNameTable'); This fails: HerdConnection.ExecSQL('ALTER TABLE myTable RENAME COLUMN oldcolName TO NewColName'); Since i installed the new sqlite3.dll driver, the