dellelce / mkit

build software from (latest available) source
1 stars 2 forks source link

review Python build: sqlite3 #68

Open dellelce opened 5 months ago

dellelce commented 5 months ago

Need to ensure:

example of retrieving build options:

 x=s.connect(":memory:")
 z=x.execute("pragma compile_options") # z = cursor
 a=z.fetchall()
[('COMPILER=gcc-4.8.5 20150623 (Red Hat 4.8.5-44)',), ('ENABLE_FTS4',), ('ENABLE_FTS5',), ('ENABLE_GEOPOLY',), ('ENABLE_JSON1',), ('ENABLE_MATH_FUNCTIONS',), ('ENABLE_RTREE',), ('THREADSAFE=1',)]
dellelce commented 5 months ago

related StackOverflow questions: