Re: [O] A strange problem with org-babel and SQLite

2018-09-10 Thread Cecil Westerhof
2018-09-09 14:36 GMT+02:00 Robert Klein : > On Wed, 5 Sep 2018 08:56:02 +0200 > Robert Klein wrote: > > > Hi Cecil, > > > > On Mon, 3 Sep 2018 03:23:17 +0200 > > Cecil Westerhof wrote: > > > > > It has to do with the data. With the following I can reproduce it: > > > #+BEGIN_SRC sqlite :db ~/tes

Re: [O] A strange problem with org-babel and SQLite

2018-09-09 Thread Robert Klein
On Wed, 5 Sep 2018 08:56:02 +0200 Robert Klein wrote: > Hi Cecil, > > On Mon, 3 Sep 2018 03:23:17 +0200 > Cecil Westerhof wrote: > > > It has to do with the data. With the following I can reproduce it: > > #+BEGIN_SRC sqlite :db ~/testingOrgBabel.sqlite :colnames yes > > DROP TABLE IF EXISTS q

Re: [O] A strange problem with org-babel and SQLite

2018-09-04 Thread Robert Klein
Hi Cecil, On Mon, 3 Sep 2018 03:23:17 +0200 Cecil Westerhof wrote: > It has to do with the data. With the following I can reproduce it: > #+BEGIN_SRC sqlite :db ~/testingOrgBabel.sqlite :colnames yes > DROP TABLE IF EXISTS quotes > ; > CREATE TABLE "quotes" ( > quoteID TEXT

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
It has to do with the data. With the following I can reproduce it: #+BEGIN_SRC sqlite :db ~/testingOrgBabel.sqlite :colnames yes DROP TABLE IF EXISTS quotes ; CREATE TABLE "quotes" ( quoteID TEXT PRIMARY KEY, quote TEXT NOT NULL UNIQUE, lastUsedTEXT,

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
2018-09-01 14:24 GMT+02:00 Robert Klein : > Hi Cecil, > > On Sat, 1 Sep 2018 11:12:57 +0200 > Cecil Westerhof wrote: > > > 2018-08-31 13:22 GMT+02:00 Robert Klein : > > > > > On Fri, 31 Aug 2018 12:24:33 +0200 > > > Cecil Westerhof wrote: > > > > > > > 2018-08-31 11:17 GMT+02:00 Robert Klein : >

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
2018-09-02 15:22 GMT+02:00 Cecil Westerhof : > > > 2018-09-01 14:24 GMT+02:00 Robert Klein : > >> Hi Cecil, >> >> On Sat, 1 Sep 2018 11:12:57 +0200 >> Cecil Westerhof wrote: >> >> > 2018-08-31 13:22 GMT+02:00 Robert Klein : >> > >> > > On Fri, 31 Aug 2018 12:24:33 +0200 >> > > Cecil Westerhof wr

Re: [O] A strange problem with org-babel and SQLite

2018-09-02 Thread Cecil Westerhof
2018-09-01 14:24 GMT+02:00 Robert Klein : > Hi Cecil, > > On Sat, 1 Sep 2018 11:12:57 +0200 > Cecil Westerhof wrote: > > > 2018-08-31 13:22 GMT+02:00 Robert Klein : > > > > > On Fri, 31 Aug 2018 12:24:33 +0200 > > > Cecil Westerhof wrote: > > > > > > > 2018-08-31 11:17 GMT+02:00 Robert Klein : >

Re: [O] A strange problem with org-babel and SQLite

2018-09-01 Thread Robert Klein
Hi Cecil, On Sat, 1 Sep 2018 11:12:57 +0200 Cecil Westerhof wrote: > 2018-08-31 13:22 GMT+02:00 Robert Klein : > > > On Fri, 31 Aug 2018 12:24:33 +0200 > > Cecil Westerhof wrote: > > > > > 2018-08-31 11:17 GMT+02:00 Robert Klein : > > > > > > > Hi Cecil, > > > > > > > > On Fri, 31 Aug 2018

Re: [O] A strange problem with org-babel and SQLite

2018-09-01 Thread Cecil Westerhof
2018-08-31 13:22 GMT+02:00 Robert Klein : > On Fri, 31 Aug 2018 12:24:33 +0200 > Cecil Westerhof wrote: > > > 2018-08-31 11:17 GMT+02:00 Robert Klein : > > > > > Hi Cecil, > > > > > > On Fri, 31 Aug 2018 10:47:50 +0200 > > > Cecil Westerhof wrote: > > > > > > > I have a strange problem with org-

Re: [O] A strange problem with org-babel and SQLite

2018-08-31 Thread Robert Klein
Hi Cecil, On Fri, 31 Aug 2018 12:24:33 +0200 Cecil Westerhof wrote: > 2018-08-31 11:17 GMT+02:00 Robert Klein : > > > Hi Cecil, > > > > On Fri, 31 Aug 2018 10:47:50 +0200 > > Cecil Westerhof wrote: > > > > > I have a strange problem with org-babel and SQLite. > > > > > > I have a database t

Re: [O] A strange problem with org-babel and SQLite

2018-08-31 Thread Cecil Westerhof
2018-08-31 11:17 GMT+02:00 Robert Klein : > Hi Cecil, > > On Fri, 31 Aug 2018 10:47:50 +0200 > Cecil Westerhof wrote: > > > I have a strange problem with org-babel and SQLite. > > > > I have a database that is created with: > > CREATE TABLE "quotes" ( > > quoteID TEXT

Re: [O] A strange problem with org-babel and SQLite

2018-08-31 Thread Robert Klein
Hi Cecil, On Fri, 31 Aug 2018 10:47:50 +0200 Cecil Westerhof wrote: > I have a strange problem with org-babel and SQLite. > > I have a database that is created with: > CREATE TABLE "quotes" ( > quoteID TEXT PRIMARY KEY, > quote TEXT NOT NULL UNIQ

[O] A strange problem with org-babel and SQLite

2018-08-31 Thread Cecil Westerhof
I have a strange problem with org-babel and SQLite. I have a database that is created with: CREATE TABLE "quotes" ( quoteID TEXT PRIMARY KEY, quote TEXT NOT NULL UNIQUE, lastUsedTEXT, totalUsed INT DEFAULT 'unused'