|
Revision 3236, 204 bytes
(checked in by timothy, 2 years ago)
|
More complete SQL logging. If you have logs enabled we will now save a second log that is in SQL format along side the XML log. This is for test purposes, and will change later once the XML log is not needed. We now bundle sqlite version 3.3.5 so Panther users can use this, and to get the latest version. You will need sqlite 3.3.5 commandline tool to read the logs. Development builds will spew SQL debug info to the console for each message and event.
|
| Line | |
|---|
| 1 |
#import "JVChatTranscript.h" |
|---|
| 2 |
#import <sqlite3.h> |
|---|
| 3 |
|
|---|
| 4 |
@interface JVSQLChatTranscript : JVChatTranscript { |
|---|
| 5 |
sqlite3 *_database; |
|---|
| 6 |
unsigned long long _currentContext; |
|---|
| 7 |
unsigned long long _currentSession; |
|---|
| 8 |
} |
|---|
| 9 |
@end |
|---|