Re: [sqlite] Send Mail from sqlite

2014-02-08 Thread Klaas V
From: "Keith Medcalf" Date: 7 Feb 2014 18:03:12 GMT+01:00 To: "General Discussion of SQLite Database" Reply-To: General Discussion of SQLite Database Have your application that is performing the update send an email when it does an update/insert/delete. > I like to know if there is any poss

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Keith Medcalf
Have your application that is performing the update send an email when it does an update/insert/delete. >I like to know if there is any possible to send a mail from sqlite. > >I wanted to know if there is option to configure smtp in sqlite, which >will help me to send a mail. > >My requirement >

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Nelson, Erik - 2
Simon Slavin wrote on Friday, February 07, 2014 5:06 AM >> On 7 Feb 2014, at 9:59am, Vairamuthu wrote: >> Thanks for your response, it will be great help if you can get me >> some sample code or algorithms, on that. > > That would depend on what programming language you are using and what > acces

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Vairamuthu
Thanks to all for the suggestion, will try my best to implement this solution. On Fri, Feb 7, 2014 at 6:28 PM, Kevin Martin wrote: > On 7 Feb 2014, at 09:59, Vairamuthu wrote: > > > Thanks for your response, it will be great help if you can get me some > > sample code or algorithms, on that.

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Kevin Martin
On 7 Feb 2014, at 09:59, Vairamuthu wrote: > Thanks for your response, it will be great help if you can get me some > sample code or algorithms, on that. I'm assuming you're using SQLite embedded within another application on something unix like. Off the top of my head, here's how I would do

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Dominique Devienne
On Fri, Feb 7, 2014 at 11:06 AM, Simon Slavin wrote: > On 7 Feb 2014, at 9:59am, Vairamuthu wrote: > > > Thanks for your response, it will be great help if you can get me some > > sample code or algorithms, on that. > > That would depend on what programming language you are using and what > acce

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Bart Smissaert
Not sure now if SQLite does events that can be picked up by your application, but I use a VB wrapper (vbRichClient, written by Olaf Schmidt) that does do SQLite events. If events can't be used then I presume you need to poll the database for changes. RBS On Fri, Feb 7, 2014 at 10:06 AM, Simon Sla

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Simon Slavin
On 7 Feb 2014, at 9:59am, Vairamuthu wrote: > Thanks for your response, it will be great help if you can get me some > sample code or algorithms, on that. That would depend on what programming language you are using and what access it has to any method of sending mail. However you do it, it w

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Vairamuthu
Thanks for your response, it will be great help if you can get me some sample code or algorithms, on that. On Fri, Feb 7, 2014 at 5:55 PM, Simon Slavin wrote: > > On 7 Feb 2014, at 9:51am, Vairamuthu wrote: > > > Hi > > > > I like to know if there is any possible to send a mail from sqlite. >

Re: [sqlite] Send Mail from sqlite

2014-02-07 Thread Simon Slavin
On 7 Feb 2014, at 9:51am, Vairamuthu wrote: > Hi > > I like to know if there is any possible to send a mail from sqlite. No it's not. Sorry, you are going to have to do some programming. Simon. ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] Send Mail from sqlite

2014-02-07 Thread Vairamuthu
Hi I like to know if there is any possible to send a mail from sqlite. I wanted to know if there is option to configure smtp in sqlite, which will help me to send a mail. My requirement I need to send a notification mail once the table is getting updated/inserted/deleted. Regards Muthu __