0.1.30 • Published 3 years ago

vv-mssql-shared v0.1.30

Weekly downloads
68
License
MIT
Repository
github
Last release
3 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

3 years ago

0.1.29

3 years ago

0.1.28

3 years ago

0.1.27

3 years ago

0.1.26

3 years ago

0.1.22

3 years ago

0.1.23

3 years ago

0.1.24

3 years ago

0.1.25

3 years ago

0.1.21

3 years ago

0.1.14

3 years ago

0.1.20

3 years ago

0.1.17

3 years ago

0.1.18

3 years ago

0.1.19

3 years ago

0.1.12

3 years ago

0.1.11

3 years ago

0.1.10

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.4

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.0.17

3 years ago

0.0.18

3 years ago

0.0.16

4 years ago

0.0.14

4 years ago

0.0.15

4 years ago

0.0.12

4 years ago

0.0.13

4 years ago

0.0.10

4 years ago

0.0.11

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.3

4 years ago

0.0.4

4 years ago

0.0.7

4 years ago

0.0.2

4 years ago