[fpc-pascal] Re: Working Free Pascal android JNI example

2012-02-12 Thread ss
Hello sir, Read your posts. I 'm currently working on Lazarus android app programmin ,i request you to guide me on that .Plz mail me your contact id so that i can get in touch with you...you can add me on sivabsang...@gmail.com Thank you Regards -- View this message in context: http://free-pas

[fpc-pascal] TSqlite3Dataset and Attach Database

2012-02-12 Thread Malcolm Poole
Hi, Can anyone tell me if it is possible to attach another database file to a TSQlite3Dataset before opening a query. I've tried using 'ATTACH "" AS dataDB;' as the first line of the DS SQL but I always get an error: 'dataDB is already in use'. No error is returned if I run the SQL using s

[fpc-pascal] Re: Problems with moving/renaming file using sysutils.renamefile

2012-02-12 Thread Reinier Olislagers
On 10-2-2012 13:59, Reinier Olislagers wrote: > On 10-2-2012 13:42, michael.vancanneyt-0is9kj9s...@public.gmane.org wrote: >> The function just renames. The result may be that the file ends up in >> another directory, i.e. is moved. > Mmm yes. To me that is arguing over semantics. Or maybe we're tr

Re: [fpc-pascal] TSqlite3Dataset and Attach Database

2012-02-12 Thread Malcolm Poole
On 12/02/12 11:36, Malcolm Poole wrote: Can anyone tell me if it is possible to attach another database file to a TSQlite3Dataset before opening a query. OK, I worked this one out myself: I called TSQlite3Dataset.ExecSQL('ATTACH "" AS dataDB;') before calling TSQlite3Dataset.Open and it wor