File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ async function runConfigureConnectionWizard(
245245 const userInput = await vscode . window . showInputBox ( {
246246 title : `Configure '${ alias } '` ,
247247 prompt : "Oracle user" ,
248- value : existingProfile ?. user ?? "" ,
248+ value : existingProfile ?. user ?? "imijdbManager " ,
249249 ignoreFocusOut : true ,
250250 validateInput : ( value ) =>
251251 value . trim ( ) . length > 0 ? undefined : "User is required."
@@ -257,8 +257,8 @@ async function runConfigureConnectionWizard(
257257
258258 const connectStringInput = await vscode . window . showInputBox ( {
259259 title : `Configure '${ alias } '` ,
260- prompt : "Connect string (example: localhost:1521/XEPDB1 )" ,
261- value : existingProfile ?. connectString ?? "" ,
260+ prompt : "Connect string (example: localhost:1521/XE )" ,
261+ value : existingProfile ?. connectString ?? "localhost:1521/XE " ,
262262 ignoreFocusOut : true ,
263263 validateInput : ( value ) =>
264264 value . trim ( ) . length > 0 ? undefined : "Connect string is required."
You can’t perform that action at this time.
0 commit comments