Reputation: 91
Is there any way to pass the user password manually without passing the password in the sqlline jdbc connection string (like below). We want that sqlline tool will ask to put the password to connect, how to achieve this.
./sqlline.sh --verbose=true -u "jdbc:ignite:thin://127.0.0.1:10800;user=ignite;password=ignite"
Upvotes: 0
Views: 478
Reputation: 19313
Sqlline will always ask for user and password if they are not provided on connection string.
Upvotes: 1