How to fix incorrect syntax near '?'
When I execute this code, I'm getting an error in the SQL command
Incorrect syntax near '?'
This is my code:
Dim command As New SqlCommand("SELECT [username], [password] FROM [stud_table] WHERE [username] = ?", connection)
command.Parameters.AddWithValue("username", Me.UsernameTextBox.Text)
Try
connection.Open()
Dim adapter As New SqlDataAdapter(command)
Dim rec As SqlDataReader = command.ExecuteScalar()
If rec.HasRows Then
rec.Read()
If Me.PasswordTextBox.Text.ToLower = rec.Item("password").ToString Then
MsgBox("Login successful")
Me.Hide()
user_profile.Show()
Else
MsgBox("Login unsuccessful, Incorrect Password", MsgBoxStyle.OkOnly, "Invalid")
End If
Else
MsgBox("Login unsuccessful, Invalid UserName", MsgBoxStyle.OkOnly, "Invalid")
End If
rec.Close()
Catch ex As OleDb.OleDbException
MsgBox("Login unsuccessful,no connection", MsgBoxStyle.OkOnly, "Invalid")
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
connection.Close()
End Try
sql-server vb.net
add a comment |
When I execute this code, I'm getting an error in the SQL command
Incorrect syntax near '?'
This is my code:
Dim command As New SqlCommand("SELECT [username], [password] FROM [stud_table] WHERE [username] = ?", connection)
command.Parameters.AddWithValue("username", Me.UsernameTextBox.Text)
Try
connection.Open()
Dim adapter As New SqlDataAdapter(command)
Dim rec As SqlDataReader = command.ExecuteScalar()
If rec.HasRows Then
rec.Read()
If Me.PasswordTextBox.Text.ToLower = rec.Item("password").ToString Then
MsgBox("Login successful")
Me.Hide()
user_profile.Show()
Else
MsgBox("Login unsuccessful, Incorrect Password", MsgBoxStyle.OkOnly, "Invalid")
End If
Else
MsgBox("Login unsuccessful, Invalid UserName", MsgBoxStyle.OkOnly, "Invalid")
End If
rec.Close()
Catch ex As OleDb.OleDbException
MsgBox("Login unsuccessful,no connection", MsgBoxStyle.OkOnly, "Invalid")
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
connection.Close()
End Try
sql-server vb.net
1
Sql Server doesn't use the ? as placeholder for parameters. It uses the @ followed by a string representing the parameter name
– Steve
Jan 18 at 20:26
Do not store passwords as plain text.
– Mary
Jan 19 at 5:51
You are using an SqlCommand and an SqlDataAdapter but you are catching an OleDbException. What database are you using???
– Mary
Jan 19 at 5:53
add a comment |
When I execute this code, I'm getting an error in the SQL command
Incorrect syntax near '?'
This is my code:
Dim command As New SqlCommand("SELECT [username], [password] FROM [stud_table] WHERE [username] = ?", connection)
command.Parameters.AddWithValue("username", Me.UsernameTextBox.Text)
Try
connection.Open()
Dim adapter As New SqlDataAdapter(command)
Dim rec As SqlDataReader = command.ExecuteScalar()
If rec.HasRows Then
rec.Read()
If Me.PasswordTextBox.Text.ToLower = rec.Item("password").ToString Then
MsgBox("Login successful")
Me.Hide()
user_profile.Show()
Else
MsgBox("Login unsuccessful, Incorrect Password", MsgBoxStyle.OkOnly, "Invalid")
End If
Else
MsgBox("Login unsuccessful, Invalid UserName", MsgBoxStyle.OkOnly, "Invalid")
End If
rec.Close()
Catch ex As OleDb.OleDbException
MsgBox("Login unsuccessful,no connection", MsgBoxStyle.OkOnly, "Invalid")
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
connection.Close()
End Try
sql-server vb.net
When I execute this code, I'm getting an error in the SQL command
Incorrect syntax near '?'
This is my code:
Dim command As New SqlCommand("SELECT [username], [password] FROM [stud_table] WHERE [username] = ?", connection)
command.Parameters.AddWithValue("username", Me.UsernameTextBox.Text)
Try
connection.Open()
Dim adapter As New SqlDataAdapter(command)
Dim rec As SqlDataReader = command.ExecuteScalar()
If rec.HasRows Then
rec.Read()
If Me.PasswordTextBox.Text.ToLower = rec.Item("password").ToString Then
MsgBox("Login successful")
Me.Hide()
user_profile.Show()
Else
MsgBox("Login unsuccessful, Incorrect Password", MsgBoxStyle.OkOnly, "Invalid")
End If
Else
MsgBox("Login unsuccessful, Invalid UserName", MsgBoxStyle.OkOnly, "Invalid")
End If
rec.Close()
Catch ex As OleDb.OleDbException
MsgBox("Login unsuccessful,no connection", MsgBoxStyle.OkOnly, "Invalid")
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
connection.Close()
End Try
sql-server vb.net
sql-server vb.net
edited Jan 19 at 9:44
GSerg
59.3k14102222
59.3k14102222
asked Jan 18 at 20:10
aartitirtha pramodkumaraartitirtha pramodkumar
81
81
1
Sql Server doesn't use the ? as placeholder for parameters. It uses the @ followed by a string representing the parameter name
– Steve
Jan 18 at 20:26
Do not store passwords as plain text.
– Mary
Jan 19 at 5:51
You are using an SqlCommand and an SqlDataAdapter but you are catching an OleDbException. What database are you using???
– Mary
Jan 19 at 5:53
add a comment |
1
Sql Server doesn't use the ? as placeholder for parameters. It uses the @ followed by a string representing the parameter name
– Steve
Jan 18 at 20:26
Do not store passwords as plain text.
– Mary
Jan 19 at 5:51
You are using an SqlCommand and an SqlDataAdapter but you are catching an OleDbException. What database are you using???
– Mary
Jan 19 at 5:53
1
1
Sql Server doesn't use the ? as placeholder for parameters. It uses the @ followed by a string representing the parameter name
– Steve
Jan 18 at 20:26
Sql Server doesn't use the ? as placeholder for parameters. It uses the @ followed by a string representing the parameter name
– Steve
Jan 18 at 20:26
Do not store passwords as plain text.
– Mary
Jan 19 at 5:51
Do not store passwords as plain text.
– Mary
Jan 19 at 5:51
You are using an SqlCommand and an SqlDataAdapter but you are catching an OleDbException. What database are you using???
– Mary
Jan 19 at 5:53
You are using an SqlCommand and an SqlDataAdapter but you are catching an OleDbException. What database are you using???
– Mary
Jan 19 at 5:53
add a comment |
1 Answer
1
active
oldest
votes
Use parameter names in the query:
Dim command As New SqlCommand("SELECT [username],[password] FROM [stud_table] WHERE [username] = @username", connection)
command.Parameters.AddWithValue("@username", SqlDbType.NVarChar) = Me.UsernameTextBox.Text
2
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
1
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54260807%2fhow-to-fix-incorrect-syntax-near%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use parameter names in the query:
Dim command As New SqlCommand("SELECT [username],[password] FROM [stud_table] WHERE [username] = @username", connection)
command.Parameters.AddWithValue("@username", SqlDbType.NVarChar) = Me.UsernameTextBox.Text
2
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
1
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
add a comment |
Use parameter names in the query:
Dim command As New SqlCommand("SELECT [username],[password] FROM [stud_table] WHERE [username] = @username", connection)
command.Parameters.AddWithValue("@username", SqlDbType.NVarChar) = Me.UsernameTextBox.Text
2
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
1
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
add a comment |
Use parameter names in the query:
Dim command As New SqlCommand("SELECT [username],[password] FROM [stud_table] WHERE [username] = @username", connection)
command.Parameters.AddWithValue("@username", SqlDbType.NVarChar) = Me.UsernameTextBox.Text
Use parameter names in the query:
Dim command As New SqlCommand("SELECT [username],[password] FROM [stud_table] WHERE [username] = @username", connection)
command.Parameters.AddWithValue("@username", SqlDbType.NVarChar) = Me.UsernameTextBox.Text
edited Jan 19 at 9:41
answered Jan 18 at 20:25
Vidmantas BlazeviciusVidmantas Blazevicius
1,518416
1,518416
2
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
1
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
add a comment |
2
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
1
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
2
2
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
Please do not suggest the use of AddWithValue. There are many articles explaining that there are problems with it, e.g. AddWithValue is Evil and AddWithValue is evil! But the syntax correction is otherwise good.
– Andrew Morton
Jan 18 at 22:25
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
@AndrewMorton Thank you for the note, I've edited the syntax correction with the preferred overload.
– Vidmantas Blazevicius
Jan 19 at 9:42
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
Thank you so much , it helped to solve the syntax error.
– aartitirtha pramodkumar
Jan 19 at 11:30
1
1
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
@aartitirthapramodkumar If that has solved your problem, please mark the answer as accepted.
– Vidmantas Blazevicius
Jan 19 at 11:56
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54260807%2fhow-to-fix-incorrect-syntax-near%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Sql Server doesn't use the ? as placeholder for parameters. It uses the @ followed by a string representing the parameter name
– Steve
Jan 18 at 20:26
Do not store passwords as plain text.
– Mary
Jan 19 at 5:51
You are using an SqlCommand and an SqlDataAdapter but you are catching an OleDbException. What database are you using???
– Mary
Jan 19 at 5:53