Sms Delivery Recived Detection in Windows Application
I'm using the mCore SMS Library. I'd like to create a windows application and when i receive a delivery message, the application should save that information into a database.
- What technology can i use?
- Can 开发者_JAVA百科i use windows services? How can i implement a windows service?
I think there are several questions you are asking so let's them split up a little:
- How to save delivery information in a Database File
- To solve this problem you first need to know what kind of database you have (MS Sql, Oracle, MySql, etc.) For each of these exists some kind of DbAdapter. For e.g. the MS Sql you can take a look into the .net framework System.Data.SqlClient Namespace.
- Can i use Windows Services?
- This depends on the availability of your application and on what machine it will run. In a first step you can write it as a normal application. To get it later into a service you can take a look at Walkthrough: Creating a Windows Service Application.
These are only very vague answer, but you only asked very vague. So dive in and if you good any concrete problems come back with a new question. ;-)
精彩评论