21 lines
339 B
C#
21 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SuperSQLInjection.model
|
|
{
|
|
[Serializable]
|
|
public enum DBType
|
|
{
|
|
UnKnow=0,
|
|
Access=1,
|
|
MySQL = 2,
|
|
SQLServer = 3,
|
|
Oracle = 4,
|
|
PostgreSQL=5,
|
|
DB2 = 6,
|
|
SQLite=7,
|
|
Informix=8
|
|
}
|
|
}
|