* Added SQlite connector for AvatarData. Tested -- works.

* Small bug fix in debug message
* Set default standalone configs to use SQLite across the board
This commit is contained in:
Diva Canto
2010-02-21 09:09:35 -08:00
parent 8a4947f8c7
commit 552e9e8c78
5 changed files with 90 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
BEGIN TRANSACTION;
CREATE TABLE Avatars (
PrincipalID CHAR(36) NOT NULL,
Name VARCHAR(32) NOT NULL,
Value VARCHAR(255) NOT NULL DEFAULT '',
PRIMARY KEY(PrincipalID, Name));
COMMIT;