Kaydet (Commit) df89abd5 authored tarafından Ali Yılmaz's avatar Ali Yılmaz 🎯

createdb added.

üst c3f6570b
......@@ -183,10 +183,24 @@ It is used to run SQL queries, it has `public` definition to send `SQL` query fr
----------
## cGeneration ()
## cGeneration()
This function is used to create the syntax of the `sql`, which should be written when creating a database table or column. The syntax of `sql` is generated by the interpretation of the schema that is sent to the `createtable` and `createcolumn` methods.
----------
## pGeneration ()
This function is used to parse the parameterized address sent to `route` and `mindload`.
\ No newline at end of file
## pGeneration()
This function is used to parse the parameterized address sent to `route` and `mindload`.
----------
## createdb()
Used to create new one or more databases. `mydb0` and` mydb1` represent the database names. Database creation occurs when the database names to be created are sent as `string` or `array`. If the operation is successful, `true`, otherwise `false` is returned.
##### Example
$this->createdb('mydb0');
or
$this->createdb(array('mydb0','mydb1'));
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment