wxsqlite-developers Mailing List for wxSQLite
Status: Beta
Brought to you by:
blackpaw
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: <ben...@id...> - 2004-05-25 08:40:58
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Lindsay M. <lin...@op...> - 2004-03-06 15:46:21
|
Can anyone figure out the right settings for configure.in to generate bzip distributions ? its got me stumped |
From: Jake S. <ja...@za...> - 2004-03-05 22:31:00
|
Most of the work has already been done. I think that there only needs to be some extra methods added to the wxSQLiteQuery class. Such as: bool wxSQLiteQuery::Bind(int idx, wxString value){ int rc = wxsqlite_bind(pVm, idx, value.c_str(), -1, 1); if(rc == SQLITE_OK) return TRUE; return FALSE; } and bool wxSQLiteQuery::Reset(){ lastErr = wxT(""); char *pzErrMsg = NULL; int rc = wxsqlite_reset(pVm, &pzErrMsg); if (rc != SQLITE_OK){ if (pzErrMsg){ lastErr = wxString(pzErrMsg, wxConvUTF8); wxsqlite_freemem(pzErrMsg); return FALSE; } } return TRUE; } I don't quite understand exactly how you have mapped into the sqlite dll, but mapping to sqlite_bind and sqlite_reset in the same way will work.You will notice that Reset() is very similar to Close() (not only because 80% of it is a direct cut and paste! :) ). Anyway I think that is all that needs to be done. Jake |