Q2. can JDBC be used with Kotlin Javascript? Q3. a...
# javascript
d
Q2. can JDBC be used with Kotlin Javascript? Q3. are kotlin javascript libraries able to access the local file system?
k
mishaxz: 1) no, but you can try to use IndexedDB (you have to write typed headers) or any wrapper around it
2) of course not, since in JavaScript you can't access local filesystem. But if you are writing Firefox addon, all depends on what APIs exposed by Firefox
d
ok thanks i have a better understanding now
n
Can only use JDBC on the server-side via the JVM using Kotlin for example. Can use Fetch API or AJAX to have the client communicate with the server and vice versa.