- Quick start guide
- System requirements
- Features
- Installation guide
- Mobile networks
- User guide
- Developers guide
- SMS from SQL
- MSSQL SMS
- Installation
- Database layout
- Configuration
- Test Message
- Trouble shooting
- Oracle SMS
- MySQL SMS
- PostgreSQL
- SQL Anywhere
- Microsoft Access
- HTTP API
- PHP SMS API
- C# SMS API
- VB.NET SMS API
- Service providers
- Appendix
Ozeki 10 SMS Gateway
|
|
SMS from/to MSSQL
You can use Microsoft SQL Server or Microsoft SQL Express for sending and receiving SMS. Follow this page to send or receive SMS messages through Ozeki SMS Gateway's Database User. All you have to do is insert or read data rows from the appropriate SQL table by setting INSERT INTO and SELECT statements. The solution uses Ozeki SMS Gateway installed on your PC. This solution is divided into 4 sections:
MSSQL Installation
Create the database tables for SMS sending and receiving
Setup the MSSQL connection in Ozeki
Send a test SMS message
Please make sure you read the general SQL to SMS howto before continuing.
To use this messaging function, please install and configure Ozeki SMS Gateway. After software configuration, please open it's management consol so you can install a database user. You will be able to send and receive SMS messages with an SQL Express database server. It is required to add the database connection type as seen in the examples on this page. In SQL Express you should provide the following parameters:
Congratulation for configuring a database user! Now you should create a database layout by using SQL Express. Receiving and sending text messages will work on separate SQL tables ('ozekimessagein' and 'ozekimessageout'). You can control these tables by using the INSERT and SELECT statements. To create a database layout, please open a windows command prompt and run 'cmd.exe' to start the SQL Command interpreter.
sqlcmdSQL Express will start running, so you can type your statements in the command interpreter. If the command interpreter cannot connect to SQL Express, please read How to connect to SQL Express using the SQL command line utility. Please type the following statements to create tables and add 'sysadmin' rights to your database user (Figure 1). Although you can give any table name you wish.
CREATE DATABASE ozeki GO USE ozeki GO CREATE TABLE ozekimessagein ( id int IDENTITY (1,1), sender varchar(255), receiver varchar(255), msg nvarchar(160), senttime varchar(100), receivedtime varchar(100), operator varchar(30), msgtype varchar(30), reference varchar(30), ); CREATE TABLE ozekimessageout ( id int IDENTITY (1,1), sender varchar(255), receiver varchar(255), msg nvarchar(160), senttime varchar(100), receivedtime varchar(100), operator varchar(100), msgtype varchar(30), reference varchar(30), status varchar(30), errormsg varchar(250) ); GO sp_addLogin 'ozekiuser', 'ozekipass' GO sp_addsrvrolemember 'ozekiuser', 'sysadmin' GOFigure 1 - CREATE TABLE statement. It also adds rights to 'ozekiuser'
Later on you can use the command prompt to modify the size or data type of the SMS messages.
Now you are ready to send your first SMS message by inserting a record into 'ozekimessageout'.
Use the following SQL statement example:
insert into ozekimessageout (receiver,msg,status) values ("+44111223465","Hello world","Send"); GO
Tip: SQL Express is free and can be downloaded from the following URL:
https://www.microsoft.com/en-us/sql-server/sql-server-editions-express
Trouble shooting
In some systems it is harder to connect to SQL Express. If this is the case you can see the following error message:SQLNCLI should be installed with SQL Express. This error shows that it is not installed on your machine. Please try to change the provider to 'sqloledb', so you can use OLE DB. By changing the provider the connections string changes as well:
Connection type:
OLE DB
Connection string:
Provider=SQLOLEDB;Data Source=.\SQLEXPRESS;User ID=ozekiuser; password=ozekipass;Database=ozeki;Persist Security Info=True
Or change the whole connection type to:
ODBC
and use the following connection string:
Driver={SQLServer};Server=.\SQLEXPRESS;User ID=ozekiuser; password=ozekipass;Database=ozeki;Persist Security Info=True;
Or change the whole connection type to:
SQLServer
and use the following connection string:
Server=.\SQLEXPRESS;User ID=ozekiuser;password=ozekipass; Database=ozeki;Persist Security Info=True;
One of the 3 strings above should fix this ERROR.
Microsoft SQL Server 2019
Try the following string if you need to connect to Microsoft SQL Server 2019:
Provider=SQLOLEDB.1;Data Source=YourHostName;Persist Security Info=False;Integrated Security=SSPI;User ID=UserName; Password=User'sPassword;Initial Catalog=DatabaseName
Legal |
Privacy |
Terms of use |
5706 3.237.178.91 | 92.118.27.157 | Login |