Download the PHP
package thipages/quickdb without Composer
On this page you can find all versions of the php package
thipages/quickdb. It is possible to download/install
these versions without Composer. Possible dependencies are resolved
automatically.
After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.
Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.
In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories.
In this case some credentials are needed to access such packages.
Please use the auth.json textarea to insert credentials, if a package is coming from a private repository.
You can look here for more information.
Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
To use Composer is sometimes complicated. Especially for beginners.
Composer needs much resources. Sometimes they are not available on a simple webspace.
If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Primary keys are automatically created as id field name
Foreign keys are automatically indexed
$defintion is an associative array <tableName,fieldDefinition>
fieldDefinition follows SQLite definition rules but supports shortcuts for indexes and foreign keys
#INDEX or #UNIQUE to add an index (unique) to the field,
#FK_parentTable to associate the field to the primary key of its parent table (foreign key)
$options is an associated array for customization by merging with default
primarykey : string defines the primary key common to all tables, default : id INTEGER PRIMARY KEY AUTOINCREMENT
prefield : boolean (default:false). If true : all fields are prefixed by table name
omnifields : array<string> defines fields present in all tables, default:
Note 1 : if modified_at definition is present in omnifields options, it will be automatically updated on update
Note 2 : strftime('%s','now') stores UTC unixtime (sqlite)
Composer command for our command line client (download client)This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free.Standard composer command
The package thipages/quickdb contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.