I am trying to create a method in which I can exequte mysql UPDATE, DELETE or INSERT query. The method must work when with an INSERT I ask or do not ask the last_insert_id(). Below is the code that I have at the moment:
public int executeUID(MySqlCommand msCommand)
{
try
{
this.Open();
msCommand.Connection = this.msCon;
return int.Parse(msCommand.ExecuteScalar().ToString());
}
catch (MySqlException ex)
{
throw ex;
}
finally
{
this.Close();
}
}
The problem with this is is that when I use an insert query that returns a last_insert_id() the method works greatly. But when the query doesn't return an last_insert_id() the method malfunctions. How can I get this method to work?
event-lists(event_name) VALUES ('" + strEventListName + "'); SELECT last_insert_id() AS elid It returns the last_insert_id(). When I use this query: "INSERT INTOevent-list-units(callsign,description,location) VALUES ('" + objEenheid.roepnr + "', '" + objEenheid.functie + "', '" + objEenheid.locatie + "'); INSERT INTOevent-list-units_event-lists(event-list,event-list-unit) VALUES ('" + elid.ToString() + "', last_insert_id())" I get the error Object reference not set to an instance of an object. – Bernhard Apr 1 '12 at 12:19