ophal/dba
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
== Table of Contents == I. What is DBA? II. Roadmap III. Configuration == I. What is DBA? == The DBA module is intended to handle the administration of databases in Ophal[1]. This project started as a Lua port of phpMiniAdmin[2], within the Nutria[3] project. [1] http://ophal.org [2] http://phpminiadmin.sourceforge.net [3] http://gitorious.org/nutria == II. Roadmap == 1. Alpha Port all functionality from phpMiniAdmin. 2. Beta ACL by role. 3. Release candidate Bugs fixing and performance improvements. 4. First stable release Maintenance release. == III. Configuration == 1. Settings DBA module uses extra Seawolf and Lua libraries, you need to add them manually to the sandbox in 'settings.lua', to do so just add following lines: env.preg_match = require 'seawolf.text.preg'.match env.preg_replace = require 'seawolf.text.preg'.match env.microtime = require 'seawolf.calendar'.microtime In order to customize the option MAX_ROWS_PER_PAGE just add the following to your settings.lua: settings.dba = { MAX_ROWS_PER_PAGE = 100, -- default value: 50 } 2. Database access By default DBA has no access to databases configured in settings.lua. In order to allow access to a database from DBA just set the option 'dba' to true. Example: settings.db = { test = { driver = [[SQLite3]], database = [[db/test.db]], dba = true, } }
About
(Archived) Ophal DBA module
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published