Now it generates type inserts
INSERT [Bla] ([id], [description], [name], [version])
VALUES (CAST(1 AS Numeric(19, 0)), convert(t...
This is a very specific SQL server. I would like to create a script that anyone can use, database agnostic. I have very simple data types - varchars, numbers, date, bits (boolean).
I think,
insert into bla values (1, 'die', '2001-01-01 11:11:11')
should work in all DBMS, right?
source
share