diff options
author | Max <post@wickenrode.com> | 2015-01-02 16:17:22 +0100 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-01-02 16:17:22 +0100 |
commit | 30ffc7c4d6158e1210b2463dddb62e627ca410db (patch) | |
tree | 436d33198576f1c719aad0060312da3df3eee488 /Source/SPServerSupport.h | |
parent | ee588049b5a7f755d788b983dc8cabce24453641 (diff) | |
download | sequelpro-30ffc7c4d6158e1210b2463dddb62e627ca410db.tar.gz sequelpro-30ffc7c4d6158e1210b2463dddb62e627ca410db.tar.bz2 sequelpro-30ffc7c4d6158e1210b2463dddb62e627ca410db.zip |
Some internal addtions for mysql event support
(Also deduplicated some code)
Diffstat (limited to 'Source/SPServerSupport.h')
-rw-r--r-- | Source/SPServerSupport.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/SPServerSupport.h b/Source/SPServerSupport.h index 55b8a6ad..e8b8a613 100644 --- a/Source/SPServerSupport.h +++ b/Source/SPServerSupport.h @@ -85,6 +85,9 @@ // Indexes BOOL supportsIndexKeyBlockSize; + + // Events + BOOL supportsEvents; // Data types BOOL supportsFractionalSeconds; @@ -230,6 +233,11 @@ @property (readonly) BOOL supportsTriggers; /** +* @property supportsEvents Indicates if the server supports scheduled events +*/ +@property (readonly) BOOL supportsEvents; + +/** * @property supportsIndexKeyBlockSize Indicates if the server supports specifying an index's key block size */ @property (readonly) BOOL supportsIndexKeyBlockSize; |