32 lines
500 B
C#
32 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace SQLFlowClient
|
|
{
|
|
public enum DBVendor
|
|
{
|
|
bigquery,
|
|
couchbase,
|
|
db2,
|
|
greenplum,
|
|
hana ,
|
|
hive,
|
|
impala ,
|
|
informix,
|
|
mdx,
|
|
mysql,
|
|
netezza,
|
|
openedge,
|
|
oracle,
|
|
postgresql,
|
|
redshift,
|
|
snowflake,
|
|
mssql,
|
|
sybase,
|
|
teradata,
|
|
vertica,
|
|
}
|
|
}
|