[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-19 Thread jose isaias cabrera
To add to Tony's comment... Where would you find that the developers and the actual owner of the software would answer questions to newbies? I remember when I started using this software, a complete newbie to SQLite, I asked a bunch of questions and some of them, the first to respond was Dr.

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-19 Thread Adam Devita
This link is a presentation on 'we wish git had this' https://www.youtube.com/watch?v=ghtpJnrdgbo by DRH. This is the fossil page on the subject of comparing vs git. http://www.fossil-scm.org/xfer/doc/trunk/www/fossil-v-git.wiki That said, at my workplace we use git. How else can Windows

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread J Decker
On Wed, May 18, 2016 at 2:39 AM, Cecil Westerhof wrote: > I would be interested what you find wrong about Git and is better in your > version control system. > git blows; monotone forever! > -- > Cecil Westerhof > ___ > sqlite-users mailing list >

[sqlite] Podcast with Dr Hipp: SQLite history,    success and funding

2016-05-18 Thread Jonathan Moules
I've not heard of fossil so this thread piqued my interest; I currently use Mercurial where I have a choice. I don't seem to be able to find much about Fossil v's Mercurial. This blog post looked interesting though: http://www.omiyagames.com/farewell-fossil-version-control/ Despite Mercurial

[sqlite] Podcast with Dr Hipp: SQLite history,    success and funding

2016-05-18 Thread Warren Young
On May 18, 2016, at 11:04 AM, Jonathan Moules wrote: > > I currently use Mercurial where I have a choice. > I don't seem to be able to find much about Fossil v's Mercurial. Best take it up on the Fossil mailing list. > This blog post looked interesting though: >

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread Simon Slavin
On 17 May 2016, at 6:41pm, Harrington, Paul wrote: > I am a big fan of SQLite and the elegance and simplicity of it and fossil. > The documentation and support are excellent. > > Given that the team takes a long-term perspective, I would prefer if the s/w > was structured in a more modular

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread Kees Nuyt
On Wed, 18 May 2016 11:39:28 +0200, Cecil Westerhof wrote: > I would be interested what you find wrong about Git and is better in your > version control system. Check the archives of the fossil-users mailing list fossil-users at lists.fossil-scm.org

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread Gerald Bauer
Hello, > I would be interested what you find wrong about Git and is better in your > version control system. If you google - one of the first hits that come up is: Fossil Versus Git [1]. Cheers. [1] http://www.fossil-scm.org/xfer/doc/trunk/www/fossil-v-git.wiki

[sqlite] Podcast with Dr Hipp: SQLite history,    success and funding

2016-05-18 Thread Steve Schow
ps - I had not heard of veracity before and on the surface it looks quite interesting as a direct competitor to fossil, but it also looks a bit abandoned. On May 18, 2016, at 11:38 AM, Steve Schow wrote: > Interesting read, thanks! > > I?m new to fossil, but personally I have fallen in

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread Cecil Westerhof
?I would be interested what you find wrong about Git and is better in your version control system.? -- Cecil Westerhof

[sqlite] Podcast with Dr Hipp: SQLite history,    success and funding

2016-05-18 Thread Steve Schow
Interesting read, thanks! I?m new to fossil, but personally I have fallen in love with it over the past month or so I?ve been using it. My reaction to git after several years of dabbling with it here or there has been 180 degrees opposite?not love git is a menace On May 18, 2016, at

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread Warren Young
On May 18, 2016, at 4:43 AM, Kees Nuyt wrote: > > On Wed, 18 May 2016 11:39:28 +0200, Cecil Westerhof > wrote: > >> I would be interested what you find wrong about Git and is better in your >> version control system. > > Check the archives of the fossil-users mailing list Links to a few of

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-18 Thread Warren Young
On May 18, 2016, at 4:23 AM, Gerald Bauer wrote: > >> I would be interested what you find wrong about Git and is better in your >> version control system. > > [1] http://www.fossil-scm.org/xfer/doc/trunk/www/fossil-v-git.wiki Also http://fossil-scm.org/xfer/doc/tip/www/quotes.wiki

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-17 Thread Harrington, Paul
I am a big fan of SQLite and the elegance and simplicity of it and fossil. The documentation and support are excellent. Given that the team takes a long-term perspective, I would prefer if the s/w was structured in a more modular fashion so that various components were usable as libraries e.g.

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-17 Thread Neville Dastur
Please take this to another thread! > On 16 May 2016, at 23:16, Objective C wrote: > > Thank you for your answer, > here is the code i used to backup my SQLite database : > > var source = new SQLiteConnection("Data Source = MyDB.db ; Version = 3;"); > var destination = new

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-17 Thread Kees Nuyt
On Mon, 16 May 2016 19:14:01 +, Objective C wrote: > Hi sir, > In fact, i have an issue with SQLite database Restore using c# That's not what this discussion thread is about, it would have been better if you sterted a new thread, but anyway. > i'm coding a button which can restore an

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-16 Thread Objective C
Thank you for your answer, here is the code i used to backup my SQLite database : var source = new SQLiteConnection("Data Source = MyDB.db ; Version = 3;"); var destination = new SQLiteConnection("Data Source = NewDBBackup.db; Version = 3;"); source.Open(); destination.Open();

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-16 Thread Objective C
Hi sir, In fact, i have an issue with SQLite database Restore using c# i'm coding a button which can restore an existing SQLite database with ' *.db*' extension i wonder if you can guide me please, i'll ber very grateful Sincerely yours Hashim 2016-05-16 19:08 GMT+00:00 Roger Binns : > On

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-16 Thread Richard Hipp
On 5/16/16, Eric Rubin-Smith wrote: > > Richard: when your contract is up in 2050 maybe you can write us a book. > Sort of a "War As I Knew It" but for programming. :-) > To be clear: There is no contract. Airbus purchased a small amount of support assistance from us during the initial

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-16 Thread Eric Rubin-Smith
On Sat, May 14, 2016 at 4:17 PM, Simon Slavin wrote: > Those interested in SQLite might like to listen to > > > Having spent many years working directly in Richard's code and that of many hundreds of other programmers, I consider Richard to be by far the best

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-16 Thread Roger Binns
On 16/05/16 10:36, Richard Hipp wrote: > I find that when you are thinking long-term, it changes your > perspective on which patches land on trunk. In addition to your (plural) fantastic work, saying yes/no is probably by far the most important piece. There are constant calls for things to be

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread dandl
> > 1. Why SQLite is popular. > > The answers to those question mentioned in the podcast may be good ones but I > think the main reason is that it's free. Completely, unmistakably, free. Necessary but not sufficient. It's free, and the licence is as non-restrictive as it is possible to be. >

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Tony Papadimitriou
>> > 1. Why SQLite is popular. >> >> The answers to those question mentioned in the podcast may be good ones >> but I >> think the main reason is that it's free. Completely, unmistakably, free. > >Necessary but not sufficient. >It's free, and the license is as non-restrictive as it is possible

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Simon Slavin
On 15 May 2016, at 3:17pm, Scott Robison wrote: > True. Last December I received a notice that a patch I submitted to a Trac > plugin had finally been accepted. Over seven years after I submitted it. I once submitted a bug report to Apple. Four months later it was acknowledged as a duplicate

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Simon Slavin
On 15 May 2016, at 2:14pm, mikeegg1 wrote: > As a side thought of what I?ve listened to so far? Is there a > page/reference/discussion about how the consortium was/is set up? > I am integrating SQLite into my Mac OS X application and like SQLite. I am > curious how the consortium is

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Stephan Beal
On Sun, May 15, 2016 at 2:29 PM, Tim Streater wrote: > What's all this about licences. AIUI, SQLite is explicitly in the public > domain. Meaning the question of licence doesn't arise. > it does, actually, because PD is not recognized in all jurisdictions. -- - stephan beal

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Tim Streater
On 15 May 2016 at 11:53, dandl wrote: >>> 1. Why SQLite is popular. >> >> The answers to those question mentioned in the podcast may be good ones > but I >> think the main reason is that it's free. Completely, unmistakably, free. > > Necessary but not sufficient. > > It's free, and the licence

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Simon Slavin
On 15 May 2016, at 6:35am, Roman Fleysher wrote: > 1. Why SQLite is popular. The answers to those question mentioned in the podcast may be good ones but I think the main reason is that it's free. Completely, unmistakably, free. You could make many changes to SQLite and people would

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Scott Robison
On May 15, 2016 8:06 AM, "Tony Papadimitriou" wrote: >>> > (Many open source projects have bugs waiting for months or years for someone to be bothered to fix, often driving people away!) > > To sum it up, a big thanks to Richard and his team! True. Last December I received a notice that a patch

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread mikeegg1
I?m listening to the podcast now. Great episode and I?ve subscribed to their podcast series. As a side thought of what I?ve listened to so far? Is there a page/reference/discussion about how the consortium was/is set up? I am integrating SQLite into my Mac OS X application and like SQLite. I am

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Scott Robison
On May 15, 2016 6:30 AM, "Tim Streater" wrote: > > What's all this about licences. AIUI, SQLite is explicitly in the public domain. Meaning the question of licence doesn't arise. The question of license arises when comparing two pieces of software. While PD isn't a license per se, it is

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-15 Thread Roman Fleysher
n Slavin [slav...@bigfraud.org] Sent: Saturday, May 14, 2016 4:17 PM To: SQLite mailing list Subject: [sqlite] Podcast with Dr Hipp: SQLite history, success and funding Those interested in SQLite might like to listen to <https://changelog.com/201/> Play on the page or download as an MP3. Un

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-14 Thread Simon Slavin
Those interested in SQLite might like to listen to Play on the page or download as an MP3. Unusual information on Dr Hipp's early career, SQLite history, HWACI, and how come SQLite is free but the developers still manage to afford food and somewhere to sleep.

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-14 Thread Stephen Chrzanowski
Just finished listening to it as well. Dr Hipp, I know you don't like to toot your own horn, but, really, I'd really like to hear where and when you're talking to other people about SQLite and your other projects. Really interesting info. On Sat, May 14, 2016 at 5:49 PM, Steve Schow wrote: >

[sqlite] Podcast with Dr Hipp: SQLite history, success and funding

2016-05-14 Thread Steve Schow
thanks for letting us know about that, thoroughly enjoyed listening?. On May 14, 2016, at 2:17 PM, Simon Slavin wrote: > Those interested in SQLite might like to listen to > > > > Play on the page or download as an MP3. > > Unusual information on Dr Hipp's early