Docs: New docs
This commit is contained in:
parent
03050d84bc
commit
cd24369c65
@ -47,7 +47,7 @@ The new desired structure for the table to get.
|
|||||||
***
|
***
|
||||||
|
|
||||||
### execute()
|
### execute()
|
||||||
`async` → () → __any__
|
`async` → () → [Instance.checkStructure()](./instance#checkstructure)
|
||||||
|
|
||||||
:::warning Possible crash
|
:::warning Possible crash
|
||||||
[structure()](#structure) must always be given.
|
[structure()](#structure) must always be given.
|
||||||
|
|||||||
@ -60,7 +60,7 @@ The desired structure for the table to get.
|
|||||||
***
|
***
|
||||||
|
|
||||||
### execute()
|
### execute()
|
||||||
`async` → () → __any__
|
`async` → () → [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
:::warning Possible crash
|
:::warning Possible crash
|
||||||
[structure()](#structure) must always be given.
|
[structure()](#structure) must always be given.
|
||||||
@ -70,6 +70,6 @@ Executes the prepared query.
|
|||||||
|
|
||||||
**Returns**
|
**Returns**
|
||||||
|
|
||||||
→ __any__ - The result of 'CREATE TABLE [...]'-query
|
→ [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -64,12 +64,12 @@ Enables deletion of all rows.
|
|||||||
***
|
***
|
||||||
|
|
||||||
### execute()
|
### execute()
|
||||||
`async` → () → __any__
|
`async` → () → [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
Executes the prepared query.
|
Executes the prepared query.
|
||||||
|
|
||||||
**Returns**
|
**Returns**
|
||||||
|
|
||||||
→ __any__ - Query result
|
→ [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -43,12 +43,12 @@ The data (rows) to insert.
|
|||||||
***
|
***
|
||||||
|
|
||||||
### execute()
|
### execute()
|
||||||
`async` → () → __any__
|
`async` → () → [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
Executes the prepared query.
|
Executes the prepared query.
|
||||||
|
|
||||||
**Returns**
|
**Returns**
|
||||||
|
|
||||||
→ __any__ - Query result
|
→ [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -293,12 +293,13 @@ Paginates the query.
|
|||||||
***
|
***
|
||||||
|
|
||||||
### execute()
|
### execute()
|
||||||
`async` → () → __any__
|
`async` → () → __Number__ / __Array__\<__Object__\>
|
||||||
|
|
||||||
Executes the prepared query.
|
Executes the prepared query.
|
||||||
|
|
||||||
**Returns**
|
**Returns**
|
||||||
|
|
||||||
→ __any__ - Query result
|
→ __Number__ - Numerical results<br/>
|
||||||
|
→ __Array__\<__Object__\> - Row data
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -81,12 +81,12 @@ Adds a where-clause to the query
|
|||||||
***
|
***
|
||||||
|
|
||||||
### execute()
|
### execute()
|
||||||
`async` → () → __any__
|
`async` → () → [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
Executes the prepared query.
|
Executes the prepared query.
|
||||||
|
|
||||||
**Returns**
|
**Returns**
|
||||||
|
|
||||||
→ __any__ - Query result
|
→ [OkPacket](../typedefs/okpacket)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -57,7 +57,7 @@ class Delete {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the prepared querry
|
* Executes the prepared querry
|
||||||
* @returns {Any}
|
* @returns {import("../index").OkPacket}
|
||||||
*/
|
*/
|
||||||
async execute(){
|
async execute(){
|
||||||
if (!this.#instance.isConnected()) throw new Error(`Can't execute query: Instance has no connection`);
|
if (!this.#instance.isConnected()) throw new Error(`Can't execute query: Instance has no connection`);
|
||||||
|
|||||||
@ -42,7 +42,7 @@ class Insert {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the prepared querry
|
* Executes the prepared querry
|
||||||
* @returns {Any}
|
* @returns {import("../index").OkPacket}
|
||||||
*/
|
*/
|
||||||
async execute(){
|
async execute(){
|
||||||
if (!this.#data) throw new Error("Insert: tried to insert without data");
|
if (!this.#data) throw new Error("Insert: tried to insert without data");
|
||||||
|
|||||||
@ -44,7 +44,7 @@ class AlterTable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the prepared querry
|
* Executes the prepared querry
|
||||||
* @returns {Any}
|
* @returns {import("../index").CheckResult}
|
||||||
*/
|
*/
|
||||||
async execute(){
|
async execute(){
|
||||||
if (!this.#database) throw new Error(`Can't alter table ${this.#name}: Database not selected`);
|
if (!this.#database) throw new Error(`Can't alter table ${this.#name}: Database not selected`);
|
||||||
@ -170,7 +170,7 @@ class CreateTable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the prepared querry
|
* Executes the prepared querry
|
||||||
* @returns {Any}
|
* @returns {import("../index").OkPacket}
|
||||||
*/
|
*/
|
||||||
async execute(){
|
async execute(){
|
||||||
if (!this.#database) throw new Error(`Can't create table ${this.#name}: Database not selected`);
|
if (!this.#database) throw new Error(`Can't create table ${this.#name}: Database not selected`);
|
||||||
|
|||||||
@ -69,7 +69,7 @@ class Update{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the prepared querry
|
* Executes the prepared querry
|
||||||
* @returns {Any}
|
* @returns {import("../index").OkPacket}
|
||||||
*/
|
*/
|
||||||
async execute(){
|
async execute(){
|
||||||
if (!this.#instance.isConnected()) throw new Error(`Can't execute query: Instance has no connection`);
|
if (!this.#instance.isConnected()) throw new Error(`Can't execute query: Instance has no connection`);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user