Added blob type to sqlite

This commit is contained in:
high 2011-12-31 18:22:07 -05:00
parent 5ba0efb5cc
commit 41be28b5a3

View file

@ -162,6 +162,7 @@ namespace TShockAPI.DB
{MySqlDbType.MediumText, "TEXT"},
{MySqlDbType.LongText, "TEXT"},
{MySqlDbType.Int32, "INTEGER"},
{MySqlDbType.Blob, "BLOB"},
};
public string DbTypeToString(MySqlDbType type, int? length)