On this page you can get the necessary information to
configure Microsoft SQL Express database server for SMS messaging. This page
is an extension to the How to send
SMS from an database server guide.
The solution uses the Ozeki NG - SMS Gateway software installed on your PC.
To setup your system, first you need to
install and
configure Ozeki NG SMS Gateway for
SMS messaging. After Ozeki NG is configured for SMS messaging, you can open it's
management console and you can install
a database user
in it. This database user will make SMS sending and receiving possible from your
SQL Express database server. The database user will require you to provide the
database connection type and the database connection string. For SQL Express
you will have to use the following parameters:
After you have configured the database user, you need to create the database layout
in SQL express to be able to send and receive SMS messages by using SQL
INSERT and SELECT statements. You can create the database layout by opening
a windows command prompt (Start->Run->cmd.exe), and starting the SQL Command
interpreter by typing:
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'
GO
Figure 1 - SQL Create table script
If you want to work with larger messages, you can increase the size of the
msg field, or you may also change it's data type.
After the database layout has been created you are ready to send your first SMS.
To send your first SMS message you should insert a record into the ozekimessagout
database table. You can use the following SQL command to achieve this:
insert into ozekimessageout (receiver,msg,status) values ("+44111223465","Hello
world","Send");
GO
On some systems, you might have difficulties connecting to SQL Express. This
is the error message you might experience:
ERROR 6001: Database connection error: The 'SQLNCLI' provider is not
registered on the local machine..
SQLNCLI is installed with SQL Server Native Client. This error indicates that
this is not installed on your machine. You can try to change the provider
to "sqloledb" to use OLE DB and see if
that works. In this case your connection string would be: