-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.tabularium
More file actions
395 lines (395 loc) · 11.3 KB
/
Copy path.tabularium
File metadata and controls
395 lines (395 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
{
"$schema": "https://registry.tabularis.dev/manifest.schema.json?kind=driver",
"name": "sqlserver",
"version": "1.0.0-beta.2",
"description": "Full-featured Microsoft SQL Server driver for Tabularis with schema browsing, query execution, visual plans, type-aware row editing, DDL, routines, triggers, BLOBs, and database-user management.",
"category": "database",
"tags": ["driver", "sqlserver", "mssql", "sql", "relational", "database-driver"],
"license": "Apache-2.0",
"icon": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/sqlserver-icon.svg",
"color": "#CC2927",
"screenshots": [
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/01-fresh-install.png",
"caption": "Database Manager on first launch",
"alt": "Tabularis Database Manager showing no active connections"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/02-database-picker.png",
"caption": "SQL Server listed in the database picker",
"alt": "Choose a database dialog showing SQL Server installed under SQL and Relational categories"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/03-connection-form.png",
"caption": "Connection configuration form",
"alt": "SQL Server connection form with connection string, host, port, username, password, and database fields filled in"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/04-test-connection-success.png",
"caption": "Successful connection test",
"alt": "SQL Server connection form showing a green Connection successful message"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/05-connections-list.png",
"caption": "Saved connection in the Database Manager",
"alt": "Database Manager showing one saved SQL Server connection card"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/06-schema-browser.png",
"caption": "Multi-schema browsing with tables, views, routines, and triggers",
"alt": "Sidebar schema tree showing SQL Server schemas with tables, views, routines, and triggers"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/07-table-data.png",
"caption": "Data grid with filtering and sorting",
"alt": "SQL Server customer table data grid filtered to the West region"
},
{
"url": "https://raw.githubusercontent.com/TabularisDB/tabularis-sqlserver-plugin/main/assets/screenshots/08-visual-explain.png",
"caption": "Visual EXPLAIN for a SQL Server SHOWPLAN",
"alt": "Visual EXPLAIN graph showing SQL Server SELECT, hash match, clustered index scan, and index seek operators"
}
],
"readme": "README.md",
"homepage": "https://github.com/TabularisDB/tabularis-sqlserver-plugin",
"documentation_url": "https://github.com/TabularisDB/tabularis-sqlserver-plugin#readme",
"min_runtime_version": "0.24.1-2",
"support": {
"issues_url": "https://github.com/TabularisDB/tabularis-sqlserver-plugin/issues"
},
"kind": "driver",
"engine": "sqlserver",
"explain_parsers": [
{
"engine": "sqlserver",
"format": "sqlserver-showplan-xml",
"label": "SQL Server SHOWPLAN XML",
"module": "explain/dist/index.iife.js"
}
],
"paradigms": ["relational"],
"default_port": 1433,
"default_username": "sa",
"executable": "sqlserver-plugin",
"capabilities": {
"schemas": true,
"views": true,
"routines": true,
"routine_management": true,
"triggers": true,
"user_management": true,
"file_based": false,
"folder_based": false,
"no_connection_required": false,
"connection_string": true,
"connection_string_example": "sqlserver://sa:password@localhost:1433/master",
"identifier_quote": "\"",
"sql_dialect": "mssql",
"alter_primary_key": false,
"auto_increment_keyword": "IDENTITY(1,1)",
"serial_type": "",
"inline_pk": false,
"alter_column": true,
"create_foreign_keys": true,
"manage_tables": true,
"readonly": false,
"supports_ssl": true,
"explain": true
},
"ui_extensions": [
{
"slot": "connection-modal.extra_fields",
"module": "ui/dist/index.js",
"driver": "sqlserver"
}
],
"type_mappings": {
"TIMESTAMP": "DATETIME2",
"BOOLEAN": "BIT",
"TEXT": "NVARCHAR(MAX)",
"BLOB": "VARBINARY(MAX)",
"SERIAL": "INT IDENTITY(1,1)",
"UUID": "UNIQUEIDENTIFIER",
"JSON": "NVARCHAR(MAX)"
},
"settings": [
{
"key": "max_pool_size",
"label": "Maximum Pool Size",
"type": "number",
"default": 10,
"description": "Maximum number of SQL Server sessions in each connection pool."
},
{
"key": "connect_timeout_seconds",
"label": "Connection Timeout (seconds)",
"type": "number",
"default": 15,
"description": "Maximum time allowed to establish and authenticate a new SQL Server session."
},
{
"key": "query_timeout_seconds",
"label": "Query Timeout (seconds)",
"type": "number",
"default": 0,
"description": "Maximum query duration; 0 disables the query timeout."
},
{
"key": "application_name",
"label": "Application Name",
"type": "string",
"default": "Tabularis",
"description": "Application name reported for SQL Server sessions."
},
{
"key": "trust_server_certificate",
"label": "Trust Server Certificate",
"type": "boolean",
"default": false,
"description": "Accept a self-signed server certificate without validation. Use only for trusted development servers."
},
{
"key": "pool_idle_eviction_minutes",
"label": "Pool Idle Eviction (minutes)",
"type": "number",
"default": 10,
"description": "Interval for evicting connection pools that have no checked-out sessions."
}
],
"data_types": [
{
"name": "TINYINT",
"category": "numeric",
"requires_length": false,
"requires_precision": false,
"supports_auto_increment": true
},
{
"name": "SMALLINT",
"category": "numeric",
"requires_length": false,
"requires_precision": false,
"supports_auto_increment": true
},
{
"name": "INT",
"category": "numeric",
"requires_length": false,
"requires_precision": false,
"supports_auto_increment": true
},
{
"name": "BIGINT",
"category": "numeric",
"requires_length": false,
"requires_precision": false,
"supports_auto_increment": true
},
{
"name": "DECIMAL",
"category": "numeric",
"requires_length": false,
"requires_precision": true,
"default_length": "18,2"
},
{
"name": "NUMERIC",
"category": "numeric",
"requires_length": false,
"requires_precision": true,
"default_length": "18,2"
},
{
"name": "SMALLMONEY",
"category": "numeric",
"requires_length": false,
"requires_precision": false
},
{
"name": "MONEY",
"category": "numeric",
"requires_length": false,
"requires_precision": false
},
{
"name": "FLOAT",
"category": "numeric",
"requires_length": false,
"requires_precision": false
},
{
"name": "REAL",
"category": "numeric",
"requires_length": false,
"requires_precision": false
},
{
"name": "CHAR",
"category": "string",
"requires_length": true,
"requires_precision": false,
"default_length": "1"
},
{
"name": "VARCHAR",
"category": "string",
"requires_length": true,
"requires_precision": false,
"default_length": "255"
},
{
"name": "VARCHAR(MAX)",
"category": "string",
"requires_length": false,
"requires_precision": false
},
{
"name": "TEXT",
"category": "string",
"requires_length": false,
"requires_precision": false
},
{
"name": "NCHAR",
"category": "string",
"requires_length": true,
"requires_precision": false,
"default_length": "1"
},
{
"name": "NVARCHAR",
"category": "string",
"requires_length": true,
"requires_precision": false,
"default_length": "255"
},
{
"name": "NVARCHAR(MAX)",
"category": "string",
"requires_length": false,
"requires_precision": false
},
{
"name": "NTEXT",
"category": "string",
"requires_length": false,
"requires_precision": false
},
{
"name": "BINARY",
"category": "binary",
"requires_length": true,
"requires_precision": false,
"default_length": "1"
},
{
"name": "VARBINARY",
"category": "binary",
"requires_length": true,
"requires_precision": false,
"default_length": "255"
},
{
"name": "VARBINARY(MAX)",
"category": "binary",
"requires_length": false,
"requires_precision": false
},
{
"name": "IMAGE",
"category": "binary",
"requires_length": false,
"requires_precision": false
},
{
"name": "DATE",
"category": "date",
"requires_length": false,
"requires_precision": false
},
{
"name": "TIME",
"category": "date",
"requires_length": false,
"requires_precision": false
},
{
"name": "DATETIME",
"category": "date",
"requires_length": false,
"requires_precision": false
},
{
"name": "DATETIME2",
"category": "date",
"requires_length": false,
"requires_precision": false
},
{
"name": "SMALLDATETIME",
"category": "date",
"requires_length": false,
"requires_precision": false
},
{
"name": "DATETIMEOFFSET",
"category": "date",
"requires_length": false,
"requires_precision": false
},
{
"name": "BIT",
"category": "boolean",
"requires_length": false,
"requires_precision": false
},
{
"name": "UNIQUEIDENTIFIER",
"category": "other",
"requires_length": false,
"requires_precision": false
},
{
"name": "XML",
"category": "other",
"requires_length": false,
"requires_precision": false
},
{
"name": "SQL_VARIANT",
"category": "other",
"requires_length": false,
"requires_precision": false
},
{
"name": "ROWVERSION",
"category": "other",
"requires_length": false,
"requires_precision": false
},
{
"name": "TIMESTAMP",
"category": "other",
"requires_length": false,
"requires_precision": false
},
{
"name": "HIERARCHYID",
"category": "other",
"requires_length": false,
"requires_precision": false
},
{
"name": "GEOGRAPHY",
"category": "spatial",
"requires_length": false,
"requires_precision": false
},
{
"name": "GEOMETRY",
"category": "spatial",
"requires_length": false,
"requires_precision": false
}
]
}