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
@@ -16,7 +17,12 @@ export class Db2StatusProvider extends Disposable {
16
17
constchecker=SQLStatementChecker.get();
17
18
constcheckerTimeout=getCheckerTimeout()/1000;
18
19
this.item.text=`SQL assistance available. ${checker ? `Syntax checking enabled (every ${checkerTimeout}s after editing)` : `Syntax checking not available.`}`;
19
-
this.item.detail=`You're connected to an IBM i - you can use the advanced SQL language tooling. ${checker ? `` : `Syntax checking not available. This means that the syntax checker did not install when connecting to this system.`}`;
20
+
this.item.detail=`You're connected to an IBM i. ${checker ? `You can use the advanced SQL language tooling.` : `Syntax checking not available. This means that the syntax checker did not install when connecting to this system.`}`;
21
+
this.item.detail=[
22
+
`You're connected to an IBM i.`,
23
+
checker ? `You can use the advanced SQL language tooling.` : `Syntax checking not available. This means that the syntax checker did not install when connecting to this system.`,
24
+
(useSystemNames() ? `System names` : `SQL names`)+` for columns will be used in the content assist.`
0 commit comments