Re: [sqlite] group_replace

2016-08-16 Thread Dominique Devienne
On Mon, Aug 15, 2016 at 10:20 PM, E.Pasma wrote: > 11 aug 2016, Dominique Devienne: > >> From https://www.sqlite.org/c3ref/value_blob.html: >> Please pay particular attention to the fact that the pointer returned from >> [...] sqlite3_value_text(), >> [...] can be

Re: [sqlite] group_replace

2016-08-15 Thread E.Pasma
11 aug 2016, Dominique Devienne: On Thu, Aug 11, 2016 at 1:10 PM, Anthony Lansbergen <anth...@adesys.nl> wrote: Hello, I needed a way to make parameterized texts for logging in my current project. For this purpose I missed a function in sqlite: group_replace, so I made an ext

Re: [sqlite] group_replace

2016-08-11 Thread E . Pasma
11 aug 2016, om 13:10, Anthony Lansbergen: Hello, I needed a way to make parameterized texts for logging in my current project. For this purpose I missed a function in sqlite: group_replace, so I made an extension. The function is just like group_concat, an aggregate function

Re: [sqlite] group_replace

2016-08-11 Thread Dominique Devienne
On Thu, Aug 11, 2016 at 1:10 PM, Anthony Lansbergen <anth...@adesys.nl> wrote: > Hello, > > I needed a way to make parameterized texts for logging in my current > project. > For this purpose I missed a function in sqlite: group_replace, so I made > an extension. >

[sqlite] group_replace

2016-08-11 Thread Anthony Lansbergen
Hello, I needed a way to make parameterized texts for logging in my current project. For this purpose I missed a function in sqlite: group_replace, so I made an extension. The function is just like group_concat, an aggregate function, but it replaces keys with values in a string instead