All public logs
From OnixOS
Combined display of all available logs of OnixOS. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:57, 11 August 2024 Tedaryum talk contribs created page Database (Created page with "= Models and Connections = How to make models, connections and migrations. Connections; First we need to define database connection; <code>def db = (database("dbtype","dbstring"))</code> Database type and Database strings are connection types. For example you need sqlite3 connection; <code>def db = (database("sqlite3","sqlite_database_example.db"))</code> Now ready to connect models and databases; <code>def modeldef = (model(db, "modelname", {....table definitions})...") Tag: Visual edit