Re: [sqlite] Sqlite intarray issue

2018-11-02 Thread Roman Ivasyshyn
Thank you for the clarification. On Wed, Oct 31, 2018 at 6:03 PM Richard Hipp wrote: > On 10/31/18, Roman Ivasyshyn wrote: > > > > I faced with an issue of creating int array with the same name without > > closing connection. > > That is not allowed. But you can use sqlite3_intarray_bind() to

Re: [sqlite] Sqlite intarray issue

2018-10-31 Thread Richard Hipp
On 10/31/18, Roman Ivasyshyn wrote: > > I faced with an issue of creating int array with the same name without > closing connection. That is not allowed. But you can use sqlite3_intarray_bind() to change the array to which the intarray table is bound, or the length of the array. Another option

[sqlite] Sqlite intarray issue

2018-10-31 Thread Roman Ivasyshyn
Hello sqlite team, I faced with an issue of creating int array with the same name without closing connection. I use sqlite3_intarray_create to create int array on a second call I receive SQLITE_MISUSE error. What I found inside create function that it tries to create module that already exist