Re: [sqlite] SQLite3.dll for OS x64

2012-06-08 Thread NOCaut
download source fro offixal site in C. then Create c++ project and add sqlite file.. rewrite code under с++. duild with x64 compiler. and Bingo!! all works -- View this message in context: http://sqlite.1065341.n5.nabble.com/SQLite3-dll-for-OS-x64-tp62292p62317.html Sent from the SQLite mailing l

Re: [sqlite] SQLite3.dll for OS x64

2012-06-07 Thread NOCaut
I download source fro office site. rebild it to the x64. But sqlite3.dll not work. If many code rewrite for work for x64 pleace say where i can download. or say where i can read manual for recognize. -- View this message in context: http://sqlite.1065341.n5.nabble.com/SQLite3-dll-for-OS-x64-tp

[sqlite] SQLite3.dll for OS x64

2012-06-06 Thread NOCaut
In the offical site i have not found dll for x64 OS. Where can I download it? -- View this message in context: http://sqlite.1065341.n5.nabble.com/SQLite3-dll-for-OS-x64-tp62292.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-us

Re: [sqlite] out of sequence error 2

2011-09-01 Thread NOCaut
i think. problemm from parallel access not i try create mutex in main project, than sent mutexHandle to my dll and dw = WaitForSingleObject(hMutex, 5000L) ; Messagebox(0,L"message",L"box",0); // this messaege(0,L"",L"",0); if (dw == WAIT_OBJECT_0) { CppSQLite3Query q = base.exe

[sqlite] out of sequence error 2

2011-09-01 Thread NOCaut
How wait for finish query? while(q1.step()); // or q1.fetch() <<< this function i not find CppSQLite3Query q2= db.execQuery("..."); otherstring = db.execQuery("two"); // out of sequence error q2.finalize(); -- View this message in context: http://old.nabble.com/out-of-sequence-error-2-tp32

Re: [sqlite] error:library routine out of sequence

2011-08-30 Thread NOCaut
Ok I understand. And what i most do it? -- View this message in context: http://old.nabble.com/error%3Alibrary-routine-out-of-sequence-tp32365078p32367279.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mailing list sqli

Re: [sqlite] error:library routine out of sequence

2011-08-30 Thread NOCaut
This line most finalizate q.finalize(); << or not? IO use in the COM object when i open folder I do it somethink with Database STDMETHODIMP CMyOverlayIcon2::IsMemberOf(LPCWSTR pwszPath, DWORD dwAttrib) { // use only select query (!wcscmp(db.SQLGetConfigValue("Active") ... } -- View t

[sqlite] error:library routine out of sequence

2011-08-30 Thread NOCaut
when i Offen use this code i see error "library routine out of sequence".I understand that swears on a second appeal to the already open as BD.No then make additional requests to fetch? wchar_t * IconDB::SQLGetConfigValue(char *Key) { CString s; wchar_t * result; char tmp[255]; CppSQLit

Re: [sqlite] SQLite + unicode

2011-08-21 Thread NOCaut
Thanks i change 1251 to CP_UTF8 All work :jumping: -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32296232p32301685.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mailing list sqlite-users@s

Re: [sqlite] SQLite + unicode

2011-08-20 Thread NOCaut
this is my example spellings on the VS2008 http://www.4shared.com/file/RDzSVPZq/SQLite_example.html -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32296232p32301433.html Sent from the SQLite mailing list archive at Nabble.com. __

Re: [sqlite] SQLite + unicode

2011-08-20 Thread NOCaut
I try this function. Do you have Visual Studio. i show you my example. NOCaut wrote: > > > char * unicode_to_1251(wchar_t *unicode_string) > { > int err; > char * res; > int res_len = WideCharToMultiByte( > 1251,

Re: [sqlite] SQLite + unicode

2011-08-20 Thread NOCaut
For "" and '' i know thanks, and why you write ? i want write arabic symbul مثالمثالمثالمثال -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32296232p32300446.html Sent from the SQLite mailing list archive at Nabble.com. __

[sqlite] SQLite + unicode

2011-08-19 Thread NOCaut
Say my some wrapper for i can make this query: "Select Value from Config Where Key = \"بوبوبو\"" Thanks. -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32296232p32296232.html Sent from the SQLite mailing list archive at Nabble.com. _

Re: [sqlite] SQLite + unicode

2011-08-11 Thread NOCaut
It`s so hard for me. I'll be very grateful :jumping: -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32243061.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mailing list sqlite-use

Re: [sqlite] SQLite + unicode

2011-08-11 Thread NOCaut
please kill me %-| -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32242440.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080

Re: [sqlite] SQLite + unicode

2011-08-11 Thread NOCaut
I want use but sqlity3.h NOT have this function. and i create this post for you help me use this function -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32241783.html Sent from the SQLite mailing list archive at Nabble.com. _

Re: [sqlite] SQLite + unicode

2011-08-11 Thread NOCaut
You think i most 1 -convert to UTF-8 2 -read un the const char * 3 - convert to anscii i right understand you? -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32241427.html Sent from the SQLite mailing list archive at Nabble.com. ___

Re: [sqlite] SQLite + unicode

2011-08-11 Thread NOCaut
I now how work with sqlite guys my problem: in const char * and i wont wchar_t*. becouse wchar_t* - unicode type understand int sqlite3_exec( sqlite3*, /* An open database */ const char *sql, /* SQL to be executed */ sqlite3_callback, /* Call

Re: [sqlite] SQLite + unicode

2011-08-10 Thread NOCaut
I work in VS2008 c++ i create data base my.db and wont use U N I C O D E function from this DLL i find class or unit for connect to my base from VS2008 http://sqlite.org/download.html - this link help me? you understand me? -- View this message in context: http://old.nabble.com/SQLite-%2B-uni

Re: [sqlite] SQLite + unicode

2011-08-10 Thread NOCaut
in the other forum say: "You can get the SQLite source code and compile it directly with C++ Builder (2010 and XE tested)." Come to home and see -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32235384.html Sent from the SQLite mailing list archive at Nabbl

Re: [sqlite] SQLite + unicode

2011-08-10 Thread NOCaut
Sorry for my bad english)) I want find source code for work with sqlite.. -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32235334.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mail

[sqlite] SQLite + unicode

2011-08-10 Thread NOCaut
Where i can find c++ unicode unit for work with SQLite database? Thanks. -- View this message in context: http://old.nabble.com/SQLite-%2B-unicode-tp32235242p32235242.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mail