+ 2
Add database in other lenguage != Php
How can I add SQL in other lenguage like C, C++, C#, python, Java, etc...? How can I add SQL in JavaScript or os imposible? and How I can add php in non web lenguages?
3 Respuestas
+ 3
SQL:
I'm embedding a SQL support library in my samples (since SoloLearn doesn't have local data stores available, this is in-memory). The other samples use SQLite from Python (it's available for many OS's, like Android).
Servers should never trust client code, so you might instead try NodeJS for the server-side Javascript experience.
PHP:
Works as CGI (common gateway interface), internet module (plugin to IIS, Apache, ...) and standalone interpreter. You can just write non-web code if you want that feature.
https://code.sololearn.com/WUg6o4QaxPGU/?ref=app
https://code.sololearn.com/c9mosXavqJ9W/?ref=app
https://code.sololearn.com/csyhsIovmZJ3/?ref=app
https://code.sololearn.com/WNdUCjzyeFFJ/?ref=app
+ 11
@Rafael great question!
@Kirk amazing answer!
👌👌👌👌👌
+ 1
thanks @Paola and @Kirk