INSERT Example


	String ^sTemp = "INSERT INTO myTable (	\
					SomeValueColumn,	\
					SomeStringColumn	\
				) Values (					\
				@SomeValue,					\
				@SomeString					\
				)";
	Command1->CommandText = sTemp;
	//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 OR REPLACE

Add if it doesn't exist or update if it does already exist


	INSERT OR REPLACE INTO table(column_a, column_b) VALUES(value_a, value_b);

 

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 *