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
Copy file name to clipboardExpand all lines: src/sqlancer/MainOptions.java
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,13 @@ public class MainOptions {
49
49
@Parameter(names = "--password", description = "The password used to log into the DBMS")
50
50
privateStringpassword = "sqlancer"; // NOPMD
51
51
52
+
@Parameter(names = "--host", description = "The host used to log into the DBMS")
53
+
privateStringhost = "sqlancer"; // NOPMD
54
+
55
+
@Parameter(names = "--port", description = "The port used to log into the DBMS")
56
+
privateStringport = "sqlancer"; // NOPMD
57
+
58
+
52
59
@Parameter(names = "--print-progress-information", description = "Whether to print progress information such as the number of databases generated or queries issued", arity = 1)
0 commit comments