Re: [Lazarus] SQLitePass package install problems

2011-07-28 Thread Howard Lee Harkness
What is the status of SQLitePass? I went to what was supposed to be a
download page for it (http://source.online.free.fr/), but what appears
to be the only link to download the actual components was a link to a
dead GeoCities page. Is this available anywhere? Has it changed names?
Does it differ from the components in sqlite3laz 0.4?

Speaking of the latter, is there any user documentation for sqlite3laz
*anywhere*?

2010/7/12 K. P. platyster...@hotmail.com:
 Thanks Jaroslaw,
 it does indeed work - quite different from Delphi. This will teach me not to
 assume too much but rather search for documentation!
 Cheers
 Kai

 Date: Sat, 10 Jul 2010 11:20:23 +0200
 From: j@poczta.fm
 To: lazarus@lists.lazarus.freepascal.org
 Subject: Re: [Lazarus] SQLitePass package install problems

 from SqlitePass docs:

 Packages Installation for Lazarus users (=0.9.20)

 1. Uninstall any previous version of SqlitePassDbo components :
 Choose [Components] [Configure Installed Packages] from IDE menu
 2. Select the Laz_SqlitePassDbo_Runtime and
 Laz_SqlitePassDbo_Designtime packages and click [Uninstall the
 selection] then [Save and quit the dialog].
 3. Compile the Laz_SqlitePassDbo_Runtime package. Compile and
 install the Designtime package : Choose [File] [Open] from the IDE menu
 and select
 ..\SQLitePass\Packages\Lazarus\Laz_SqlitePassDbo_Designtime.lpk. In
 package dialog, Choose compile - this way, the Laz_SqlitePassDbo_Runtime
 will automatically be compiled. Then select install to rebuild the IDE.
 4. Check installation : Select SqlitePassDbo on Component palette
 pages and drop a SqlitePassDatabase and a SqlitePassDataset on a new
 form. Check the components versions are correct in object inspector.

 it works :)

 --
 Doladuj telefon przez Internet.
 Sprawdz  http://linkint.pl/f2778


 --
 ___
 Lazarus mailing list
 Lazarus@lists.lazarus.freepascal.org
 http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

 
 Hotmail: Free, trusted and rich email service. Get it now.
 --
 ___
 Lazarus mailing list
 Lazarus@lists.lazarus.freepascal.org
 http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus





-- 
Howard Lee Harkness
(214) 390-4896

--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] SQLitePass package install problems

2011-07-28 Thread Luiz Americo Pereira Camara

On 28/7/2011 10:19, Howard Lee Harkness wrote:

What is the status of SQLitePass? I went to what was supposed to be a
download page for it (http://source.online.free.fr/), but what appears
to be the only link to download the actual components was a link to a
dead GeoCities page. Is this available anywhere? Has it changed names?
Does it differ from the components in sqlite3laz 0.4?

Speaking of the latter, is there any user documentation for sqlite3laz
*anywhere*?


http://sqlite4fpc.yolasite.com/documentation.php

Luiz

--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] SQLitePass package install problems

2010-07-12 Thread Luca Olivetti

En/na Frank Church ha escrit:
As someone interested in SQLite, does it offer support for 
http://www.sqlite.org/c3ref/busy_timeout.html and 
http://www.sqlite.org/c3ref/busy_handler.html, or implement them in some 
way?


I use the following with zeos, there should be a way to adapt it to 
other sqlite components if you can get the underlying handle to the 
sqlite connection:


function mybusyhandler(para1:pointer; times:longint):longint;cdecl;
begin
...
end;


procedure TDataModule.DbConnectionAfterConnect(Sender:TObject);
var c:TZConnection;
begin
  c:=TZConnection(sender);
  sqlite3_busy_handler((c.DbcConnection as 
IZSQLiteConnection).GetConnectionHandle, @mybusyhandler, nil);

end;

Bye
--
Luca Olivetti
Wetron Automatización S.A. http://www.wetron.es/
Tel. +34 93 5883004 (Ext.133)  Fax +34 93 5883007

--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] SQLitePass package install problems

2010-07-12 Thread K. P.

Thanks Jaroslaw,
it does indeed work - quite different from Delphi. This will teach me not to 
assume too much but rather search for documentation!
CheersKai

 Date: Sat, 10 Jul 2010 11:20:23 +0200
 From: j@poczta.fm
 To: lazarus@lists.lazarus.freepascal.org
 Subject: Re: [Lazarus] SQLitePass package install problems
 
 from SqlitePass docs:
 
 Packages Installation for Lazarus users (=0.9.20)
 
 1. Uninstall any previous version of SqlitePassDbo components : 
 Choose [Components] [Configure Installed Packages] from IDE menu
 2. Select the Laz_SqlitePassDbo_Runtime and 
 Laz_SqlitePassDbo_Designtime packages and click [Uninstall the 
 selection] then [Save and quit the dialog].
 3. Compile the Laz_SqlitePassDbo_Runtime package. Compile and 
 install the Designtime package : Choose [File] [Open] from the IDE menu 
 and select 
 ..\SQLitePass\Packages\Lazarus\Laz_SqlitePassDbo_Designtime.lpk. In 
 package dialog, Choose compile - this way, the Laz_SqlitePassDbo_Runtime 
 will automatically be compiled. Then select install to rebuild the IDE.
 4. Check installation : Select SqlitePassDbo on Component palette 
 pages and drop a SqlitePassDatabase and a SqlitePassDataset on a new 
 form. Check the components versions are correct in object inspector.
 
 it works :)
 
 --
 Doladuj telefon przez Internet.
 Sprawdz  http://linkint.pl/f2778
 
 
 --
 ___
 Lazarus mailing list
 Lazarus@lists.lazarus.freepascal.org
 http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
  
_
Hotmail: Free, trusted and rich email service.
https://signup.live.com/signup.aspx?id=60969--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] SQLitePass package install problems

2010-07-11 Thread Frank Church
As someone interested in SQLite, does it offer support for
http://www.sqlite.org/c3ref/busy_timeout.html and
http://www.sqlite.org/c3ref/busy_handler.html, or implement them in some
way?

On 10 July 2010 10:20, Jarosław j@poczta.fm wrote:

 from SqlitePass docs:

 Packages Installation for Lazarus users (=0.9.20)

   1. Uninstall any previous version of SqlitePassDbo components : Choose
 [Components] [Configure Installed Packages] from IDE menu
   2. Select the Laz_SqlitePassDbo_Runtime and Laz_SqlitePassDbo_Designtime
 packages and click [Uninstall the selection] then [Save and quit the
 dialog].
   3. Compile the Laz_SqlitePassDbo_Runtime package. Compile and install the
 Designtime package : Choose [File] [Open] from the IDE menu and select
 ..\SQLitePass\Packages\Lazarus\Laz_SqlitePassDbo_Designtime.lpk. In package
 dialog, Choose compile - this way, the Laz_SqlitePassDbo_Runtime will
 automatically be compiled. Then select install to rebuild the IDE.
   4. Check installation : Select SqlitePassDbo on Component palette pages
 and drop a SqlitePassDatabase and a SqlitePassDataset on a new form. Check
 the components versions are correct in object inspector.

 it works :)

 --
 Doladuj telefon przez Internet.
 Sprawdz  http://linkint.pl/f2778



 --
 ___
 Lazarus mailing list
 Lazarus@lists.lazarus.freepascal.org
 http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus




-- 
Frank Church

===
http://devblog.brahmancreations.com
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] SQLitePass package install problems

2010-07-10 Thread Jarosław

from SqlitePass docs:

Packages Installation for Lazarus users (=0.9.20)

   1. Uninstall any previous version of SqlitePassDbo components : 
Choose [Components] [Configure Installed Packages] from IDE menu
   2. Select the Laz_SqlitePassDbo_Runtime and 
Laz_SqlitePassDbo_Designtime packages and click [Uninstall the 
selection] then [Save and quit the dialog].
   3. Compile the Laz_SqlitePassDbo_Runtime package. Compile and 
install the Designtime package : Choose [File] [Open] from the IDE menu 
and select 
..\SQLitePass\Packages\Lazarus\Laz_SqlitePassDbo_Designtime.lpk. In 
package dialog, Choose compile - this way, the Laz_SqlitePassDbo_Runtime 
will automatically be compiled. Then select install to rebuild the IDE.
   4. Check installation : Select SqlitePassDbo on Component palette 
pages and drop a SqlitePassDatabase and a SqlitePassDataset on a new 
form. Check the components versions are correct in object inspector.


it works :)

--
Doladuj telefon przez Internet.
Sprawdz  http://linkint.pl/f2778


--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus