I am already using sqlite which comes binaries , so when build electron it compiles with respect to native os.so no prerequisites to install and use my application.
in the same way can i able to use cassandra in electron ??
It makes no sense - Cassandra is the distributed system, and designed to run in clusters of several nodes. Besides this, it has relatively high requirements for memory, and CPU, so your users won't be happy if your app will require at least 2Gb of RAM and multicore CPU to run.
You need to define what you kind of operations you want to perform, and then select database. If you need something like key-value store, you can use RocksDB, for example, etc.
Ian: Your scientists were so preoccupied with whether or not they could, they didn’t stop to think if they should
In short, You can use any DB and build an electron app. But are you sure its the right choice, when considering a small tiny hello world app in electron takes up 150 MB?