Search found 4 matches

by Django
Thu Mar 10, 2016 11:59 am
Forum: Open Discussion
Topic: Compile sqlite3 with Rad Studio possible?
Replies: 6
Views: 10648

Re: Compile sqlite3 with Rad Studio possible?

Hello. Maybe you can help me again? ;) I found that UPDATE not working with LIMIT in default setting of sqlite3. But its possible to enable it with compiling said this doc: http://sqlite.org/compile.html#enable_update_delete_limit So I add #define SQLITE_ENABLE_UPDATE_DELETE_LIMIT 1 after #define SQ...
by Django
Sat Sep 12, 2015 7:21 pm
Forum: Open Discussion
Topic: Compile sqlite3 with Rad Studio possible?
Replies: 6
Views: 10648

Re: Compile sqlite3 with Rad Studio possible?

Thanks for your help. Working now fine. :)
by Django
Sat Sep 12, 2015 11:37 am
Forum: Open Discussion
Topic: Compile sqlite3 with Rad Studio possible?
Replies: 6
Views: 10648

Re: Compile sqlite3 with Rad Studio possible?

Big thanks for your help and great work here! ;) I have remove directives from GUI and add after #define SQLITE_USER_AUTHENTICATION 1 this lines #define THREADSAFE 1 #define SQLITE_SOUNDEX 1 #define SQLITE_ENABLE_COLUMN_METADATA 1 #define SQLITE_HAS_CODEC 1 #define CODEC_TYPE CODEC_TYPE_AES128 #defi...
by Django
Fri Sep 11, 2015 3:20 pm
Forum: Open Discussion
Topic: Compile sqlite3 with Rad Studio possible?
Replies: 6
Views: 10648

Compile sqlite3 with Rad Studio possible?

Hello. I want create a LIB from sqlite3 with Rad Studio 2009. I create a new static library project and copy all files from wxsqlite3-3.2.1\sqlite3\secure\src\* into it. Additional I add this defines THREADSAFE=1 SQLITE_SOUNDEX SQLITE_ENABLE_COLUMN_METADATA SQLITE_HAS_CODEC CODEC_TYPE=CODEC_TYPE_AES...