From 0d0e4b23176f0b55d7948ffef9b9ffdad6a95973 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 14 Aug 2014 09:37:06 +0200 Subject: Draft implementation for INSERT --- bulk/mssql/auto/person.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bulk/mssql/auto/person.sql (limited to 'bulk/mssql/auto/person.sql') diff --git a/bulk/mssql/auto/person.sql b/bulk/mssql/auto/person.sql new file mode 100644 index 0000000..784d449 --- /dev/null +++ b/bulk/mssql/auto/person.sql @@ -0,0 +1,15 @@ +/* This file was generated by ODB, object-relational mapping (ORM) + * compiler for C++. + */ + + +IF OBJECT_ID('person', 'U') IS NOT NULL + DROP TABLE [person]; +GO + + +CREATE TABLE [person] ( + [id] BIGINT NOT NULL PRIMARY KEY IDENTITY, + [num] INT NOT NULL UNIQUE, + [str] VARCHAR(max) NOT NULL); +GO -- cgit v1.1