Search found 92 matches: sqlite3

Return to advanced search

Re: Native access to Sqlite3

Desgraciadamente en SQLite no hay recordset navegables. Solo hay la posibilidad de avanzar en el resultado de un SELECT por lo que siempre hay que crear un array o un hash para poder navegar en todas las direcciones. Recientemente he hecho una pequeña LIB para acceder a SQLite muy sencilla con las s...
by xmanuel
Mon Oct 02, 2023 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

carlos vargas wrote:Please, with sqlcipher


+1
by albeiroval
Fri Sep 08, 2023 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

Alvaro, me puedes contactar por email en correo.alanit arroba gmail punto com por favor ? Me interesa mucho colaborar contigo en este tema.

Mr. Rao, when will the Sqlite class for FWH be available ?

Regards,
José Luis
by José Luis Sánchez
Tue Sep 05, 2023 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

Hi, In my installation is in: \harbour\contrib\hbsqlit3\hbsqlit3.ch But I copy it here anyway. Regards, hbsqlit3.ch /* * SQLite3 library low level (client api) interface code * * Copyright 2007 P.Chornyj <myorg63@mail.ru> * * This program is free software; you can redistribute ...
by alvaro533
Sat Jul 01, 2023 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

where is hbsqlit3.ch
best regards
kajot
by kajot
Sat Jul 01, 2023 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

Thank you Mr. Rao. Any estimate on the release date?

Regards,

AQ
by alvaro533
Fri Jun 30, 2023 8:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

Please, with sqlcipher
by carlos vargas
Wed Jun 28, 2023 8:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Native access to Sqlite3

I haven't figured out a good way to display the records in xbrowse. I convert them to an Array, and it works fine, but it's not the cleanest solution

This is the best approach.

For information: Soon FWH is planning to come out with a native sqlite3 class included in the FWH libs
by nageswaragunupudi
Wed Jun 28, 2023 6:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Native access to Sqlite3

Hello, I had an old program that used an sqlite3 database. To achieve this, I used an OBDC connector that had to be installed on each computer in order to use the program. This connector, "sqliteodbc.exe," comes from the website: http://www.ch-werner.de/sqliteodbc/ ...
by alvaro533
Wed Jun 28, 2023 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Native access to Sqlite3
Replies: 9
Views: 1074

Re: Enlazar y compilar con el editor VSCode

... Files\MySQL\MySQL Utilities 1.6\;C:\Program Files\TPuy\bin;C:\Program Files\TPuy\include;C:\Program Files\Git\cmd;C:\Program Files\sqlite3;;C:\Users\TOSHIBA\AppData\Local\Programs\Microsoft VS Code\bin D:\arturo\veryanlin\prgfw_modjul21>set path=c:\1712\bcc7\bin;C:\Program Files\Common ...
by artu01
Wed Aug 11, 2021 5:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enlazar y compilar con el editor VSCode
Replies: 54
Views: 7889

Re: File name .sqlite3 not work with FW_OpenAdoConnection

Code: Select all  Expand view
  cStr  := "Provider=MSDASQL;Driver=SQLite3 ODBC Driver;Server=;Database=name.sqlite3;User=admin;Password=;"
   oCn   := FW_OpenAdoConnection( cStr )
by nageswaragunupudi
Tue Jul 27, 2021 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: File name .sqlite3 not work with FW_OpenAdoConnection
Replies: 7
Views: 590

Re: File name .sqlite3 not work with FW_OpenAdoConnection

Mr. Rao,
unfortunately both don't work.
by max
Mon Jul 26, 2021 10:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: File name .sqlite3 not work with FW_OpenAdoConnection
Replies: 7
Views: 590

Re: File name .sqlite3 not work with FW_OpenAdoConnection

Please try
Code: Select all  Expand view
FW_OpenAdoConnection( { "SQLITE", "name.sqlite3" } )


OR

Code: Select all  Expand view
FW_OpenAdoConnection( "SQLITE,name.sqlite3")
by nageswaragunupudi
Mon Jul 26, 2021 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: File name .sqlite3 not work with FW_OpenAdoConnection
Replies: 7
Views: 590
Next

Return to advanced search