For some reason, I couldn't find a good answer in google why this code dosent work:
MySqlConnection connection = new MySqlConnection("Databaseyeshuv1");
MySqlCommand command = connection.CreateCommand();
MySqlDataReader Reader;
command.CommandText =
"SELECT * FROM `MASADE_FEA_bak2` WHERE `marom_num` equals `3`";
connection.Open();
Reader = command.ExecuteReader();
while (Reader.Read())
{
string line = Reader.GetString(1);
this.שטח_קומה_מחושב.Text = line;
}
connection.Close();
This is the error I'm getting:
System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0. at System.Data.Common.DbConnectionOptions.GetKeyValuePair(String connectionString, Int32 currentPosition, StringBuilder buffer, Boolean useOdbcRules, String& keyname, String& keyvalue) at System.Data.Common.DbConnectionOptions.ParseInternal(Hashtable parsetable, String connectionString, Boolean buildChain, Hashtable synonyms, Boolean firstKey) at System.Data.Common.DbConnectionOptions..ctor(String connectionString, Hashtable synonyms, Boolean useOdbcRules) at System.Data.Common.DbConnectionStringBuilder.set_ConnectionString(String value) at MySql.Data.MySqlClient.MySqlConnection.set_ConnectionString(String value) at MySql.Data.MySqlClient.MySqlConnection..ctor(String connectionString) at MyApp7.UI.Controls.ShowMASADE_FEA_bak2.KomotMASADE_FEA_bak2TableControlRow.Setשטח_קומה_מחושב()
I think you made many mistake in your code:
"Databaseyeshuv1" should be the connection string value, not the name. You should write some code to get that value from config file. Have a look at here= instead of equals and remove the character quoting 3, so just use number 3 only.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With