Hey Guys....Can somebody describe me good, how SQLite3 works? There are a few Questions: 1.I know how to create an example.yml but how I create a example.db ? 2.In example.yml you can write things in the file like this with "set()": Code: Player1: 60 Player2: 15662 ... Or you can get a Information from a example.yml with "get()"... But how to set and get Informations into/from a example.db? So I never used this before... Thanks for help... Marcelo234
I was pointing out that file-based and table-based databases are different in structure. You can't say 'If you do $yamlConfig->get("abc"), you have to do $sqlite->get("abc") instead', because they are different.
I accidentally used an search engine and this is what I found http://php.net/manual/en/book.sqlite3.php http://stackoverflow.com/questions/5041737/how-to-connect-to-a-sqlite3-db-with-php http://www.tutorialspoint.com/sqlite/sqlite_php.htm http://babbage.cs.qc.cuny.edu/courses/cs903/2013_02/using_sqlite3.html On other hand.. you can find more useful sites by clicking here