Hey I keep getting an error:

Index (zero based) must be greater than or equal to zero and less than the size of the argument list.

My code:

        OdbcCommand cmd = new OdbcCommand("SELECT FirstName, SecondName, Aboutme FROM User WHERE UserID=1", cn);
    OdbcDataReader reader = cmd.ExecuteReader();
    while (reader.Read())
    {
        Name.Text = String.Format("{0} {1}", reader.GetString(0), reader.GetString(1));
        Aboutme.Text = String.Format("{2}", reader.GetString(0));
    }
}
link|improve this question

2  
You transposed the index of the argument in the reader with the index of the parameter in the format statement. Switch 2 with 0 in your Aboutme.Text = . – tvanfosson Mar 15 '11 at 18:47
4  
String.Format does not use unique placeholders per-class nor per-solution. It is per string each time String.Format is called, so please don't increase it to {2} based on {0} and {1} having been used! – Richard aka cyberkiwi Mar 15 '11 at 18:48
any reason you're using ODBC vs. the .NET connector ? – f00 Mar 15 '11 at 19:18
Why do you use a string.formar for this row :) Aboutme.Text = String.Format("{2}", reader.GetString(0)); you could. Aboutme.Text =reader.GetString(0); – Ivo Dec 15 '11 at 9:29
feedback

3 Answers

up vote 20 down vote accepted

Your second String.Format uses {2} as a placeholder but you're only passing in one argument, so you should use {0} instead.

Change this:

String.Format("{2}", reader.GetString(0));

To this:

String.Format("{0}", reader.GetString(2));
link|improve this answer
@tvanfosson thanks for the update! – Ahmad Mageed Mar 15 '11 at 18:47
you're welcome. – tvanfosson Mar 15 '11 at 18:49
feedback

In this line:

Aboutme.Text = String.Format("{2}", reader.GetString(0));

The token {2} is invalid because you only have one item in the parms. Use this instead:

Aboutme.Text = String.Format("{0}", reader.GetString(0));
link|improve this answer
feedback

Change this line:

Aboutme.Text = String.Format("{0}", reader.GetString(0));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.