wxSQLite - how to build? Topic is solved
-
- Experienced Solver
- Posts: 94
- Joined: Fri Sep 25, 2015 2:33 pm
Re: wxSQLite - how to build?
Just out of curiosity..
I did everything what you said and nothing worked steve....
Is this how open source libraries are going to be?
Or do I have to get used to this hard way...why is no one there to guide us?
I did everything what you said and nothing worked steve....
Is this how open source libraries are going to be?
Or do I have to get used to this hard way...why is no one there to guide us?
- evstevemd
- Part Of The Furniture
- Posts: 2293
- Joined: Wed Jan 28, 2009 11:57 am
- Location: United Republic of Tanzania
- Contact:
Re: wxSQLite - how to build?
its not hard. but you are doing something wrong. I can't tell what it is.sly_chandan wrote:Just out of curiosity..
I did everything what you said and nothing worked steve....
Is this how open source libraries are going to be?
Or do I have to get used to this hard way...why is no one there to guide us?
Chief Justice: We have trouble dear citizens!
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
[Ubuntu 19.04/Windows 10 Pro/MacOS 10.13 - GCC/MinGW/Clang, CodeLite IDE]
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
[Ubuntu 19.04/Windows 10 Pro/MacOS 10.13 - GCC/MinGW/Clang, CodeLite IDE]
-
- Experienced Solver
- Posts: 94
- Joined: Fri Sep 25, 2015 2:33 pm
Re: wxSQLite - how to build?
Do I have to build all these possibilities:
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 RUNTIME_LIBS=static BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 RUNTIME_LIBS=static BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=debug
mingw32-make -f makefile.gcc SHARED=1 UNICODE=0 BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=0 BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=0 BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=0 BUILD=debug
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 RUNTIME_LIBS=static BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 RUNTIME_LIBS=static BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=debug
mingw32-make -f makefile.gcc SHARED=1 UNICODE=0 BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=0 BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=0 BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=0 BUILD=debug
-
- Experienced Solver
- Posts: 94
- Joined: Fri Sep 25, 2015 2:33 pm
Re: wxSQLite - how to build?
I have done the wxsqlite3 steve.......
wxSqlite3 is installed.....
I had to do some changes apart from what you told me...
Changing the wxsqlite3 parameters you said were required to do.
How do I know I have setup wxsqlite3 correctly.
wxSqlite3 is installed.....
I had to do some changes apart from what you told me...
Changing the wxsqlite3 parameters you said were required to do.
How do I know I have setup wxsqlite3 correctly.
-
- Experienced Solver
- Posts: 94
- Joined: Fri Sep 25, 2015 2:33 pm
Re: wxSQLite - how to build?
How to install sqlite3 or rather how to get it up running...
When I run my wxWidgets app says sqlite3.dll is missing from your computer. Try reinstalling the program.
When I run my wxWidgets app says sqlite3.dll is missing from your computer. Try reinstalling the program.
- evstevemd
- Part Of The Furniture
- Posts: 2293
- Joined: Wed Jan 28, 2009 11:57 am
- Location: United Republic of Tanzania
- Contact:
Re: wxSQLite - how to build?
Add it to your project libraries in CB and then copy it ti same directory as your exe
Chief Justice: We have trouble dear citizens!
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
[Ubuntu 19.04/Windows 10 Pro/MacOS 10.13 - GCC/MinGW/Clang, CodeLite IDE]
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
[Ubuntu 19.04/Windows 10 Pro/MacOS 10.13 - GCC/MinGW/Clang, CodeLite IDE]
Re: wxSQLite - how to build?
Note that wxSQLite3 still requires SQLite3. If you don't link it statically, you need the DLLs from the SQLite download page: https://www.sqlite.org/download.htmlWhen I run my wxWidgets app says sqlite3.dll is missing from your computer. Try reinstalling the program.
Use the source, Luke!
-
- Experienced Solver
- Posts: 94
- Joined: Fri Sep 25, 2015 2:33 pm
Re: wxSQLite - how to build?
I would recommend this solution to everyone....
No need to compile the wxsqlite library.....
I have tried the way and it messes up the project.....
Thaaaaaaaaaaaaannnnnnnnkkkkkkkkkksssssssssssssssss Steve....
Marvelous!!!!!

- evstevemd
- Part Of The Furniture
- Posts: 2293
- Joined: Wed Jan 28, 2009 11:57 am
- Location: United Republic of Tanzania
- Contact:
Re: wxSQLite - how to build?
I have added CMake for compiling MySQL and SQLite3. Other databases will follow (help is appreciated here)
There is sample that is using SQLite3 (but interface i almost the same)
I will appreciate tests and inputs
Basicall
=======
1. CD to build subdir
2. Run Command cmake ../
3. run Make
Remember to setup correct wxWidgets path in CMakeList.txt file
With MySQL you need it installed
with SQLite3 you need nothing. Everything is included
There is sample that is using SQLite3 (but interface i almost the same)
I will appreciate tests and inputs
Basicall
=======
1. CD to build subdir
2. Run Command cmake ../
3. run Make
Remember to setup correct wxWidgets path in CMakeList.txt file
With MySQL you need it installed
with SQLite3 you need nothing. Everything is included
Chief Justice: We have trouble dear citizens!
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
[Ubuntu 19.04/Windows 10 Pro/MacOS 10.13 - GCC/MinGW/Clang, CodeLite IDE]
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
[Ubuntu 19.04/Windows 10 Pro/MacOS 10.13 - GCC/MinGW/Clang, CodeLite IDE]