Re: [sqlite] [EXTERNAL] How to parameterize a loadable extension at runtime

2018-02-06 Thread Ulrich Telle
> Hick Gunter wrote: > > You can pass parameters to the xCreate function in the CREATE VIRTUAL TABLE > statement, if the setting you desire remains unchanged during the lifetime of > the table. > > CREATE VIRTUAL TABLE USING [ ( ,...) ]; > > You can declare hidden fields in the call to

Re: [sqlite] [EXTERNAL] How to parameterize a loadable extension at runtime

2018-02-06 Thread Hick Gunter
You can pass parameters to the xCreate function in the CREATE VIRTUAL TABLE statement, if the setting you desire remains unchanged during the lifetime of the table. CREATE VIRTUAL TABLE USING [ ( ,...) ]; You can declare hidden fields in the call to sqlite3_declare_vtab() call within your