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
text: "Your second line should have the form `PreparedStatement pstmt = connection.prepareStatement(QueryString);`"
33
+
text: "After defining the query string you should create a prepared statement, using the form `PreparedStatement pstmt = connection.prepareStatement(QueryString);`"
34
34
},
35
35
{
36
36
absent: "search_lastname",
@@ -54,5 +54,26 @@ info =
54
54
index: 1,
55
55
text: "After using `setString` execute the query and place the results in `results`, something like `ResultSet results = pstmt.executeQuery();`"
56
56
}
57
-
]
57
+
],
58
+
expected: [
59
+
String.raw` String QueryString = "select * from authors where lastname=?";
0 commit comments