且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

intput字符串格式不正确...将字符串转换为datetime时...错误?

更新时间:2023-11-08 13:06:46

我假设在playerPayTextBox文本框中输入的值始终符合您设置的货币值,因此,您可以执行此操作



 decimal.Parse(playerPayTextBox.text ,System.Globalization.NumberStyles.Currency); 





如果输入的值可以是任何类似货币的值,那么你必须做更多的过滤。



您需要过滤



,和

和前面的任何其他货币符号





这可以通过多种方式完成,只要你只拿数字。


I am trying to pass a parameter to a sql select query.

for some reason, no matter what i try, i keep getting the same error:
input string not in the corect format

and the suggestion:
when converting a string to datetime, parse the string to take the date before putting each variable into the datetime object.

i'm stumped as to what to do. here's the code.

sql query:

ALTER PROCEDURE SearchAllPlayers
(
@personName,
@personPay,
@IDs
)
 
SELECT DISTINCT
                         person.personID, sports.sportsID, person.personName, person.personPay, sports.sport,
 
FROM            sports INNER JOIN
                person INNER JOIN
                personSport ON personSport.personID = person.personID
                       INNER JOIN
                personSport ON personSport.sportID = sports.sportsID
 
WHERE        (person.personName LIKE '%' + @personName + '%')
              AND
             (person.personPay >= @personPay OR 0 = @personPay)
              AND
             (person.regDate >= { fn CURDATE() }
              AND
             (sports.sportID IN
                    (SELECT   ID FROM dbo.fnSplitter(@IDs) AS fnSplitter_1) OR @IDs = 0)



protected void Button1_Click(object sender, EventArgs e)
    {
        searchGrid();
    }
 
    protected void searchGrid()
    {
        SqlConnection conn = new SqlConnection(connSTR);
        com = new SqlCommand();
        conn.Open();
 
        com.Connection = conn;
 
        com.CommandText = "SearchAllPlayers";
        com.CommandType = CommandType.StoredProcedure;
 
        string StringWithDelimiter = string.Empty;
        for (int i = 0; i < DropDownCheckBoxes1.Items.Count; i++)
        {
            if (DropDownCheckBoxes1.Items[i].Selected)
                StringWithDelimiter += DropDownCheckBoxes1.Items[i].Value + ";";
        }
        
        com.Parameters.Add("@personName", SqlDbType.VarChar).Value = personName.Text;

        //next line is where I am having problems
        com.Parameters.Add("@personPay", SqlDbType.Decimal).Value = ??????
        com.Parameters.Add("@IDs", SqlDbType.VarChar).Value = StringWithDelimiter;
 
        sqlDa = new SqlDataAdapter(com);
        dS = new DataSet();
        sqlDa.Fill(dS);
 
        conn.Close();
        GridView1.DataSource = dS;
        GridView1.DataBind();
 
    }



so far i've tried the following combinations, all to know avail.

com.parameters.add("@playerPay", sqldbtype.decimal).value = playerPayTextBox.Text;
this doesn't seem to work, i get the following error:
"Error converting data type nvarchar to decimal."

so then i tried this:
com.parameters.add("@playerPay", sqldbtype.decimal).value = playerPayTextBox.tostring();
i get the same error:
"Error converting data type nvarchar to decimal."

which makes sense, so then i tried:
com.parameters.add("@playerPay", sqldbtype.decimal).value = decimal.parse(playerPayTextBox.tostring());
error: "Input string was not in a correct format." - then the datetime thing...

com.parameters.add("@playerPay", sqldbtype.decimal).value = decimal.parse(playerPayTextBox.text);
error: "Input string was not in a correct format." - then the datetime thing...

com.parameters.add("@playerPay", sqldbtype.decimal).value = convert.todecimal(playerPayTextBox.text);
error: "Input string was not in a correct format." - then the datetime thing...

com.parameters.add("@playerPay", sqldbtype.decimal).value = convert.todecimal(playerPayTextBox.text);
error: "Input string was not in a correct format." - then the datetime thing...

not sure what to do

I'm assuming the value entered in playerPayTextBox textbox always conform to a currency value you have set so, you can do this

decimal.Parse(playerPayTextBox.text, System.Globalization.NumberStyles.Currency);



If the value entered can be anything resembling a currency then you have to do more filtering.

You need to filter

"," and "


" and any other currency symbol at front



This can be done in variety of ways as long as you only take the numbers.