Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

v1.1.1

Choose a tag to compare

@rafaelveggi rafaelveggi released this 08 Nov 12:59
· 25 commits to master since this release
6c637cd

Improved messages from methods:

SQLQuery
Before:
[[['col1','col2'], ['val1.1',,,'val1.2']], [['col1','col2'], ['val2.1',,,'val2.2']], ...]
After:
[{col1: 'val1.1', col2: 'val1.2'}, {col1: 'val2.1', col2: 'val2.2'}, ...]

SQLListTables
Before:
[['tableName1'], ['tableName2'], ...]
After:
[{name: 'tableName1'}, {name: 'tableName2'}, ...]

SQLDescribe
Before:
[[string, string, boolean, string, boolean, boolean], ...]

After:

{
  name: string,
  type: string,
  nullable: boolean,
  index: string,
  autoincrement: booelan,
  unique: boolean,
},
...
Morty Proxy This is a proxified and sanitized view of the page, visit original site.