You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improvements for drag and drop of items from the DB Schema dock to editor
Two new options editable from a new context menu of the dock:
- Drag & Drop Qualified Names: add table name to fields and schema name
to other objects (except for "main" schema)
- Drag & Drop Enquoted Names: whether to surround the identifiers by the
configured quoting characters for identifiers.
Support for dragging & dropping of attached databases names.
Add "." as separator for multiple dropped objects other than fields (since
they are not usually used in SQL as a list). This allows to compose
qualified names by dropping the parent and the child items together. This
is only generally useful when the "Qualified Names" option is disabled.
See related issue #1433
<string>This is the structure of the opened database.
1212
-
You can drag multiple object names from the Name column and drop them into the SQL editor.
1215
+
You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements.
1213
1216
You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications.
1214
1217
</string>
1215
1218
</property>
@@ -2203,6 +2206,34 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed
2203
2206
<string>New In-&Memory Database</string>
2204
2207
</property>
2205
2208
</action>
2209
+
<actionname="actionDropQualifiedCheck">
2210
+
<propertyname="checkable">
2211
+
<bool>true</bool>
2212
+
</property>
2213
+
<propertyname="text">
2214
+
<string>Drag && Drop Qualified Names</string>
2215
+
</property>
2216
+
<propertyname="statusTip">
2217
+
<string>Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor </string>
2218
+
</property>
2219
+
<propertyname="whatsThis">
2220
+
<string>Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor </string>
2221
+
</property>
2222
+
</action>
2223
+
<actionname="actionEnquoteNamesCheck">
2224
+
<propertyname="checkable">
2225
+
<bool>true</bool>
2226
+
</property>
2227
+
<propertyname="text">
2228
+
<string>Drag && Drop Enquoted Names</string>
2229
+
</property>
2230
+
<propertyname="statusTip">
2231
+
<string>Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor </string>
2232
+
</property>
2233
+
<propertyname="whatsThis">
2234
+
<string>Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor </string>
2235
+
</property>
2236
+
</action>
2206
2237
</widget>
2207
2238
<customwidgets>
2208
2239
<customwidget>
@@ -2696,6 +2727,22 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed
0 commit comments