In the following query, what does "?" mean?
this.AdminDelCmd.CommandText =
"DELETE FROM Admin WHERE (admincd = ?) AND (terminalno = ?)";
|
|
This is NOT a ternary operator, and is NOT an object of type Nullable. This is called a parameterized query and is used to help prevent SQL Injection. This is the 'older style' of SQL syntax. This can be used when you want your queries to work with multiple different databases (such as MySQL & SQL Server). The new style, also used for SQL Server (as was pointed out to me below) uses a '@' prepended to the parameter name. MySQL also uses '@' for server-side user variable declarations which can cause some confusion. Later code fills in the question marks. If you could post the next few lines, that would help us more. Here are some links to explain things more thoroughly (the second is for asp but applies): |
|||||||
|
|
These are Your command should have one parameter for each positional parameter (?) in the same order as the positional parameters appear in the command text. You generally use positional parameters
|
|||
|
|
|
Depending on the contents of the invisible query, it could be either a part of the ternary operator Asaph mentioned, or the shorthand for a So if it says:
it's the ternary operator; If it says:
it means |
|||||||||
|
|
that's menas that the value of the admincd AND terminalno will be resolved at runtime from the datasource. i think your datasource would be a DataTable and your trying to update your database with DataApapter |
|||
|
|
|
It can also be a conditional operator:
which means if y equals 3 then x = 1 else x = 0 |
|||
|
|
|
The "?" mark is a placeholder for a parameter which will be specified later in the code. In this way your SQL command can be precompiled (parsed) at the beginning as a "prepared statement" and be faster later during execution when parameters are available. |
|||
|
|