Re: [MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-20 Thread Martin Schreiber
On 12/21/2011 06:51 AM, IvankoB wrote: > SIGTRAP: Trace/ breakpoint on ntdll!DbgUIConnToDbg > (win-32, fpc-2.4.4) > > The debugged project is project run in the debugged IDE. > In both projects, there're no active breakpoints, all stop options in > project settings are off too. > Restart the de

[MSEide-MSEgui-talk] Debugging IDE in IDE: SIGTRAP stop in parent IDE on pressing F12 to display a form designer in the child IDE

2011-12-20 Thread IvankoB
SIGTRAP: Trace/ breakpoint on ntdll!DbgUIConnToDbg (win-32, fpc-2.4.4) The debugged project is project run in the debugged IDE. In both projects, there're no active breakpoints, all stop options in project settings are off too. PS: It seems that we have a recursion or endless loop when manual a

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread Martin Schreiber
On 12/20/2011 10:20 PM, IvankoB for-mse wrote: >>> The same application works without encryption? > > Yes, the connection is set active OK for "SQlite3 Cripto" DB created > with empty key. > With exactly the same application including the beforeconnect script with the key pragma?

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread IvankoB for-mse
>Yes, the connection is set active OK for "SQlite3 Cripto" DB created > with empty key. It's really strange since the only thing to do is to call "PRAGMA key=..''" as 1-st command after connection and me do it with TSQLScript. 2011/12/21, IvankoB for-mse : >>>The same application works without

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread IvankoB for-mse
>>The same application works without encryption? Yes, the connection is set active OK for "SQlite3 Cripto" DB created with empty key. 2011/12/21, IvankoB for-mse : > The API ("sqlite3.exe") reports about non-database or encrypted database > file. > === > It's reported by SQLITE3.

[MSEide-MSEgui-talk] Survey

2011-12-20 Thread Patrick
I would like to set up a survey to get some information about the people using this software. I have the following questions for the survey. If you can think of something else that might be interesting, let me know. name: first / last / optional sex:male / female age:

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread IvankoB for-mse
The API ("sqlite3.exe") reports about non-database or encrypted database file. === It's reported by SQLITE3.EXE on any accessing DB contents if the supplied key mismatches. 2011/12/21, IvankoB for-mse : > An encryption problem? What happens with a wrong key? > === > T

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread Martin Schreiber
On 12/20/2011 08:20 PM, IvankoB for-mse wrote: > An encryption problem? What happens with a wrong key? > === > The API ("sqlite3.exe") reports about non-database or encrypted database file. > Possibly, error message shoud be extended to tell about encryption issues. > > The file is ope

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread IvankoB for-mse
An encryption problem? What happens with a wrong key? === The API ("sqlite3.exe") reports about non-database or encrypted database file. Possibly, error message shoud be extended to tell about encryption issues. The file is operable - checked within "sqlite3.exe ": pragma key = ''; se

Re: [MSEide-MSEgui-talk] website groups: MSE Installer, OSPrinter, Repaz

2011-12-20 Thread wahono sri
On 20 December 2011 23:58, Patrick wrote: > The groups module used by our website is not longer supported by Drupal (our > website CMS).  It has a security flaw that has not been fixed by the > maintainer. > > I would like to replace / upgrade the groups moduel. > > Does anyone use the groups?  I

[MSEide-MSEgui-talk] website groups: MSE Installer, OSPrinter, Repaz

2011-12-20 Thread Patrick
The groups module used by our website is not longer supported by Drupal (our website CMS). It has a security flaw that has not been fixed by the maintainer. I would like to replace / upgrade the groups moduel. Does anyone use the groups? I don't see any active / current postings in the groups.

Re: [MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread Martin Schreiber
On 12/20/2011 04:09 PM, IvankoB wrote: > when activation a query based to that table. > > TMSESQLScript was used to call : > > PRAGMA KEY = ''; > > as 1-st command after connecting (it's a requirement). > An encryption problem? What happens with a wrong key? > PS: > needs "database=" property

Re: [MSEide-MSEgui-talk] Statfiles: can reading/writting from/to be intercepted ?

2011-12-20 Thread Martin Schreiber
On 12/20/2011 07:22 AM, IvankoB wrote: > so that to decrypt/encrypt contents on-fly > ( by crypto functions using ANSISTRING for both input & output data) > git master 846793afeabfadeefb03c192e5fc6fbdcc9f29c0 has tstatfiler.updatebinaryvalue(), tstatwriter.writebinarystring(), tstatreader.readbina

[MSEide-MSEgui-talk] Encrypted SQLite3 (with "sqlite3d.dll" from the "SQLite Cipher"): no such table for really existing table

2011-12-20 Thread IvankoB
when activation a query based to that table. TMSESQLScript was used to call : PRAGMA KEY = ''; as 1-st command after connecting (it's a requirement). PS: needs "database=" property to be assigned even after assigning .BeforeConnect= which feels as double work. As designed ? -