Can Delphi FireDAC work properly with SEE on android platform? - android

I'm a newbie for android development.
I'm developing an mobile application run on Android devices with Delphi XE7. And now I'm searching the way to encrypt the sqlite database files accessed through FireDac on Android devices.
I've found The SQLite Encryption Extension (SEE).
But I'm not sure if FireDac can work properly with SEE to manipulate sqlite databases on Android device. If it can, how to deploy SEE to an android device?
Please suggest solutions.

FireDAC will not support SEE. However, you could use the build-in encryption with FireDAC for SQLite. That would save you from having to use multiple components for the same task.
Here is a link to the documentation on SQLite with FireDAC. The encryption process is included.
http://docwiki.embarcadero.com/RADStudio/XE8/en/Using_SQLite_with_FireDAC

Related

Is there any way to run my android app on android device by localhost

I am using MySql database in my android app, can you tell me how can i run it on my android phone ratter than running it on emulator.
If you want to persist data in your app, Android by default has SQLite library pre-installed. Here you can see the tutorial how to use it. https://developer.android.com/training/data-storage/sqlite
But as they recommend on their landing page, it is much easier and convenient to use Room library, which works as ORM tool for SQLite on your device.
Here is the link to room library.

Bidirectional Data Synchronization between android sqlite and Derby

We have build and Android app with sqlite db and a Windows program with JavaFX that can use either Derby db or sqlite db. Synchronization does not want to use a server yes old fashion wire form one device to another. So my question is has anyone found an open source API to accomplish this task? As a novice developer I might add that the perhaps the other fly in the soup is we would like to encrypt the data on both databases. This fly can be optional. The desktop development is using NetBeans and the Android development is the obvious Android Studio.
If anyone has a book or web site suggestion that would be great.
We can consider a NON FREE API with cost as a factor.

React-native - SQLite - Android

Well, I'm developing an android application with React Native, and I decided to use SQLite as a database
On the site 'https://github.com/andpor/react-native-sqlite-storage' it explains a bit of how to use SQLite with react-native, the problem is that I work with a Windows operating system computer.
I'm following all the steps of the site, but when I get into 'Setting up your project to import the pre-populated SQLite database from iOS application', I'm confused as I'm developing an Android application, and it teaches only for iOS.
I wonder if it has a way of doing the same thing for Android. Can you help me?
If you are using android then you can jump directly to Opening a Database.
As the documentation says, the step you are stuck in is for iOS only.

How to Encrypt data saved in SQLite Using PhoneGap Application

I am developing a multi-platform application using PhoneGap targeting Android, Windows and iOs in the future.
How to secure the data saved on the device by Encryption, I am using SQLite DB.
After searching for a while I came across SQLChipher. Can any one suggest is this the right choice to use for encryption/secure data on the device.
Does it support both Android and Windows.
If there are any other encrypting methods that work for both Android and Windows please let me know.
My motive is to secure data on the device.
Thank you for your help in advance.
Much appreciated.
Rao

Is it possible to use Android database for iphone application?

I am developing an content oriented app for android and iphone. I finished developing in android which has database in the format of androidApp.db. Is it possible to use the same database for iphone as well because in iphone the database format is .sqlite.
Is it possible to use Android - androidAppdatabase.db
for iOS - iphoneAppdatabase.sqlite?.
If so please could you suggest some steps.
Thanks for your help guys.
YES, its is you can use this DB it in both android as well as iOS
android and iOS both supports SQLite
EDIT : Download SQLite expert from here
the db file is used to copy in both android and iPhone applications, check following link, to know how to do this in iOS.
Add an SQLite database to an iPhone app

Categories

Resources