WORM 0.2
A C++ DAL/ORM code generation framework
|
00001 00002 #ifndef WSQL_H 00003 #define WSQL_H 00004 00008 namespace WSql 00009 { 00010 enum TableType 00011 { 00012 Tables = 0x01, 00013 InformationSchema = 0x02, 00014 Views = 0x04, 00015 AllTables = 0xff 00016 }; 00017 00018 enum DriverType 00019 { 00020 NONE, 00021 WMYSQL, 00022 WSQLITE, 00023 WPSQL, 00024 WMONGO, 00025 WBERKLEYDB //hehe .. 00026 }; 00027 } 00028 #endif // WSQL_H