INSERT Example


	Command1.CommandText = @"INSERT INTO myTable (
						SomeValueColumn,
						SomeStringColumn
					) Values (
						@SomeValue,
						@SomeString
					)";
	//Strings should be added as parameters to avoid sanatisation risks unless you know they are safe.
	//Other values can be added as parameters too or inline in the INSERT text.
	Command1.Parameters.AddWithValue("@SomeValue", 1234);
	Command1.Parameters.AddWithValue("@SomeString", "Hello");

	Command1.ExecuteNonQuery();

INSERT and get Auto Increment value


	int NewRowIdValue;
	Command1.CommandText = @"INSERT INTO myTable (
						SomeValueColumn,
						SomeStringColumn
					) Values (
						@SomeValue,
						@SomeString
					); SELECT last_insert_rowid() AS rowid FROM myTable LIMIT 1";
	Command1.Parameters.AddWithValue("@SomeValue", 1234);
	Command1.Parameters.AddWithValue("@SomeString", "Hello");

	//Command1.ExecuteNonQuery();
	System.Data.SQLite.SQLiteDataReader Reader1 = Command1.ExecuteReader();		//Get the auto index value
	{
		if (Reader1.Read())
			NewRowIdValue = Convert.ToInt32(Reader1["rowid"]);
	}
	Reader1.Close();

Insert If Not Exists


	Command1->CommandText = "INSERT INTO tblMyTable (	\
								FieldName,					\
								FieldIsActive				\
							) SELECT 						\
								@FieldName,					\
								@FieldIsActive				\
							WHERE NOT EXISTS(SELECT 1 FROM tblMyTable WHERE FieldName = 'Part')";

Inserting Null


	Command1.Parameters.AddWithValue("@LanguageNameImage", DBNull.Value);

Get Auto Increment Row Value

After doing the INSERT command do this:

 

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *