Files
SuperSQLInjectionV1/SuperSQLInjection/model/DBType.cs

21 lines
339 B
C#
Raw Normal View History

2017-03-13 16:12:15 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SuperSQLInjection.model
{
[Serializable]
public enum DBType
{
UnKnow=0,
Access=1,
MySQL = 2,
2017-03-13 16:12:15 +08:00
SQLServer = 3,
Oracle = 4,
PostgreSQL=5,
DB2 = 6,
SQLite=7,
Informix=8
2017-03-13 16:12:15 +08:00
}
}