I want to read sqllite file in appian how can i do this what is best practice to do this
Discussion posts and replies are publicly visible
I do not know of a way to work with sqlite files in Appian. I think the best way would be to import the data from sqlite into the DB attached to your Appian system.
im not understanding how to import that data in sqllite file as there is not direct connection is there any plugin available for the sameStefan Helzle
I asked DeepSeek. SQLite is a database. Using the sqlite3 command, you can export data into a format you can then import into MariaDB.
The export command is:
sqlite3 yourdb.sqlite ".dump" | sed "s|'|\"|g" > output.sql
I did not test this, but it seems like a reasonable idea to start with.