0.1.30 • Published 4 years ago

vv-mssql-shared v0.1.30

Weekly downloads
68
License
MIT
Repository
github
Last release
4 years ago

Install & Use

npm i vv-mssql-shared
const vvms = require('vv-mssql-shared')

let script_create_or_alter_table = vvms.depot_sch_table('dbo', 'table1', 'my table #1', [
    {name: 'fld1', description: 'field #1 - primary key', type: 'int', identity: true, pk_position: 1},
    {name: 'fld2', description: 'field #2', type: 'bit'},
    {name: 'fld3', description: 'field #3', type: 'nvarchar', len_chars: 100},
    {name: 'fld4', description: 'field #4', type: 'nvarchar', len_chars: 'max'},
    {name: 'fld5', description: 'field #5', type: 'decimal', precision: 14, scale: 3}
], 'ignore')
console.log(script_create_or_alter_table)

Typedefs

sqltype : 'bigint' | 'bit' | 'decimal' | 'int' | 'money' | 'numeric' | 'smallint' | 'smallmoney' | 'tinyint' | 'float' | 'real' | 'date' | 'datetime2' | 'datetime' | 'datetimeoffset' | 'smalldatetime' | 'time' | 'char' | 'text' | 'varchar' | 'sysname' | 'nchar' | 'ntext' | 'nvarchar' | 'binary' | 'image' | 'varbinary' | 'hierarchyid' | 'sql_variant' | 'xml' | 'uniqueidentifier' | 'timestamp' | 'geometry' | 'geography'

MS SQL datatype

Kind: global typedef

type_sql_object_name : s.type_sql_object_name

Kind: global typedef

type_column

MS SQL tables column

Kind: global typedef
Properties

NameType
namestring
typesqltype
len_charsnumber | 'max'
precisionnumber
scalenumber
nullableboolean
identity_seednumber
identity_incrementnumber
pk_positionnumber
descriptionstring
collatestring

type_sql

MS SQL datatype params

Kind: global typedef
Properties

NameType
precision'deny' | 'allow' | number
scale'deny' | 'allow' | number
len'deny' | 'allow' | 'deny_max' | number
jstype'number' | 'Date' | 'string'
xsdtype'xs:integer' | 'xs:decimal' | 'xs:boolean' | 'xs:date' | 'xs:dateTime' | 'xs:time' | 'xs:string'
bytes_on_charnumber
typesqltype
0.1.30

4 years ago

0.1.29

4 years ago

0.1.28

4 years ago

0.1.27

4 years ago

0.1.26

4 years ago

0.1.22

4 years ago

0.1.23

4 years ago

0.1.24

4 years ago

0.1.25

4 years ago

0.1.21

4 years ago

0.1.14

4 years ago

0.1.20

4 years ago

0.1.17

4 years ago

0.1.18

4 years ago

0.1.19

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.4

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.0.17

5 years ago

0.0.18

5 years ago

0.0.16

5 years ago

0.0.14

5 years ago

0.0.15

5 years ago

0.0.12

5 years ago

0.0.13

5 years ago

0.0.10

5 years ago

0.0.11

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.3

5 years ago

0.0.4

5 years ago

0.0.7

5 years ago

0.0.2

5 years ago