• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Send a sms to a database

 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi to all in the forum!
I've been thinking how could i send a sms from my mobile to a database maybe sql server.
I did some research and found that maybe using at commands could be an option but still don't know what other options exist.
Has someone done something like this?
 
Ilh Oleo
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Really? No one knows how to do something like this? give me just a clue what are the key words to look on google.
 
Bartender
Posts: 1849
15
Eclipse IDE Spring VI Editor Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Maybe you'll have better luck in the JDBC forum.... I'll get ya there
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You probably aren't getting answers because the question doesn't make sense. You wouldn't "send an SMS to a database". You might send an SMS to something which puts it into a database. (I can't imagine why you would want to do that, but you could certainly do it.)

So first you would have to send the text. Then you would have to have something receive the text. Then that something would proceed to add it to the database.

Which of these tasks do you have a question about?
 
Ilh Oleo
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Clapham wrote:You probably aren't getting answers because the question doesn't make sense. You wouldn't "send an SMS to a database". You might send an SMS to something which puts it into a database. (I can't imagine why you would want to do that, but you could certainly do it.)

So first you would have to send the text. Then you would have to have something receive the text. Then that something would proceed to add it to the database.

Which of these tasks do you have a question about?



Yeah that is what i have in mind and i thought it was understood that way but it doesn't matter.

So what would i need to receive the text? It can be done with php,asp.net,java but do i need something extra?

Thanks
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ilh Oleo wrote:So what would i need to receive the text? It can be done with php,asp.net,java but do i need something extra?Thanks


You would probably want a servlet or some other type of listener to receive the messages.
 
reply
    Bookmark Topic Watch Topic
  • New Topic