Skip to content

Instantly share code, notes, and snippets.

@motowilliams
Created October 23, 2011 20:44
Show Gist options
  • Save motowilliams/1307872 to your computer and use it in GitHub Desktop.
Save motowilliams/1307872 to your computer and use it in GitHub Desktop.
LINQPad-with-Databases
BEGIN TRANSACTION;
CREATE TABLE People (Id INTEGER PRIMARY KEY, FirstName varchar(25), LastName varchar(50), JokerRating int);
INSERT INTO People VALUES(1,'Chuck','Norris',0);
INSERT INTO People VALUES(2,'Clint','Eastwood',0);
INSERT INTO People VALUES(3,'Pauly','Shore',1);
INSERT INTO People VALUES(4,'Eric','Williams',2);
COMMIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment