- Product Manual
- Introduction
- SMS technology
- Installation Guide
- User Guide
- Quick Start Guide
- User Interface
- Configuration
- Inbound Routing
- Outbound routing
- SQL logging
- MySQL table layout
- Oracle table layout
- MSSQL table layout
- SQL templates
- SQL log tracking
- Keywords
- Failed queries
- Advanced traffic queries
- SMS routing table override
- Sender address
- Content manipulation
- Charset handling
- List Management
- SMS Client software
- Administrator's guide
- Developers Guide
- Examples and Solutions
- Appendix
- SMS FAQ
- Feature list
- Commercial Information
- Search
Ozeki NG SMS Gateway
SQL Templates for SQL logging in Ozeki NG SMS Gateway
The following SQL commands are used to log incoming and outgoing messages into the database. If you are experiencing problems with SQL logging, please check if the following templates are specified in the server preferences form:
Template used for incoming messages to save them into the SMS inbox table:
INSERT INTO inbox (username,msgtype,msgid,sender,receiver,msgsubject,msgdata,senttime,receivedtime,operator) VALUES ('$username','$msgtype','$msgid','$sender','$receiver','$msgsubject','$msgdata','$senttime','$receivedtime','$operator')
Template used to insert a record into the SMS outbox table for messages accepted to be sent:
INSERT INTO outbox (username,msgtype,msgid,sender,receiver,msgsubject,msgdata,acceptedfordeliverytime,operator,status) VALUES ('$username','$msgtype','$msgid','$sender','$receiver','$msgsubject','$msgdata','$acceptedfordeliverytime','$operator','accepted')
Template used to update the SMS outbox table when a message was delivered to the network.
UPDATE outbox SET deliveredtonetworktime='$deliveredtonetworktime', callbackid='$callbackid', status='deliveredtonetwork', cost='$cost' where msgid='$msgid'
Template used to update the SMS outbox table when a message was delivered to the handset.
UPDATE outbox SET deliveredtohandsettime='$deliveredtohandsettime', status='deliveredtohandset' where msgid='$msgid'
Template used to update the SMS outbox table when a message delivery failed.
UPDATE outbox SET errormessage='$errormessage', status='deliveryfailed' where msgid='$msgid'
More information
- SQL templates
- SQL log tracking
- SMS sender address
- Outlook SMS spy
- Content manipulation
- SMS routing table override
- Charset handling