Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
francescobianco committed May 20, 2020
1 parent 79afc91 commit d560e38
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ $hdb->query("UPDATE vtiger_users SET language = ? WHERE user_name = ?", ["en_us"

[[back to top]](#Documentation)

<hr/>

#### Fetches the next row from the result set rows by the given parametric query


Expand All @@ -79,6 +81,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>

#### Returns an array containing all of the result set rows by the given parametric query


Expand All @@ -93,6 +97,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>

#### Inserts the given record within the selected table


Expand All @@ -107,6 +113,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>

#### Inserts the given record within the selected table


Expand All @@ -121,6 +129,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>

#### Updates the given record with the given data


Expand All @@ -135,6 +145,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>

#### Deletes the given record within the given table


Expand All @@ -149,6 +161,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>

### Tables manipulation
#### Create new table

Expand All @@ -164,6 +178,8 @@ query($sql, $params = [], $options = [])

[[back to top]](#Documentation)

<hr/>



## Changelog
Expand Down
1 change: 1 addition & 0 deletions scripts/update-readme.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
$documentation .= "```php\n<?php\n" . $tag->getDescription() . "\n```\n\n";
}
$documentation .= '[[back to top]](#Documentation)'."\n\n";
$documentation .= "<hr/>"."\n\n";
} catch (ReflectionException $exception) {
echo $exception->getMessage()."\n";
exit(1);
Expand Down

0 comments on commit d560e38

Please sign in to comment.