Search found 95 matches: rdbms

Return to advanced search

Re: who use PostgreSQL with Fivewin ?

... / Fivewin Way --- when build TPQServer LIB there is a File rddcopy.c it have HB_FUNC( HB_PQCOPYFROMWA ) Question : how to use "PostgreSQL RDBMS low-level (client API) interface code" with CLASS TPQServer :?:
by Jimmy
Wed Sep 27, 2023 8:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1036

Re: DBF to Excel Sheet, without Excel, using ADO ?

This is not true:

Yes, not true for MsAccess, MSSQL and ALL other RDBMS with ADO.
But true for Excel ADO recordset
by nageswaragunupudi
Wed Aug 16, 2023 8:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2566

Re: how store Image into Database

... use memo fields. ( DataType 'M' ) If you are using any RDMS use BLOB fields. DBF: FIELD->IMAGE := MEMOREAD( "picture.jpg" ) RDBMS: oRs:image := MEMOREAD( "picture.jpg" ) If you are browsing in XBrowse, you can copy image from any source and paste into the ...
by nageswaragunupudi
Sun Jul 23, 2023 11:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 305

Re: how store Image into Database

... use memo fields. ( DataType 'M' ) If you are using any RDMS use BLOB fields. DBF: FIELD->IMAGE := MEMOREAD( "picture.jpg" ) RDBMS: oRs:image := MEMOREAD( "picture.jpg" ) If you are browsing in XBrowse, you can copy image from any source and paste into the ...
by nageswaragunupudi
Sun Jul 23, 2023 11:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 305

Re: build Import LIB from LibPQ.DLL

... the bug a few days back when I was testing postgre samples. From now, we will pay equal attention to postgre support. It is really a wonderful RDBMS This is the bugfix: In xbrowse.prg, inside the method SetPostGreCol(...) please locate this line:            :cFooterPicture ...
by nageswaragunupudi
Mon Jul 03, 2023 4:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: build Import LIB from LibPQ.DLL
Replies: 37
Views: 2813

Re: Sql Filter between two dates - ADO

... AND HDATE < '2023-02-01'" Note: It is safer to use "HDATE < (date + 1 )" than "HDATE <= (date)", because many RDBMS use datetime fields. How to easily generate these expressions? We better make it a habit to open an ADO connection using FW_OpenAdoConnection() ...
by nageswaragunupudi
Sun Jun 25, 2023 3:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sql Filter between two dates - ADO
Replies: 3
Views: 338

Re: Cómo saber si una DATABASE existe?

... If using ADO aDb := FW_AdoCatalogs( oCn )? AScan( aDb, { |c| Lower( c ) == cDatabase } ) This works for all RDBMS including MySql
by nageswaragunupudi
Tue Jun 20, 2023 7:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo saber si una DATABASE existe? (SOLUCIONADO)
Replies: 5
Views: 446

Re: how to handle License for MySQL, PostgreSQL & Co ?

We can not distribute servers. (server software)
But we can distribute any application using ADO or Harbour or FWH libraries either for free or at cost without any licenses to work with any RDBMS/database installed or hired by the user.
by nageswaragunupudi
Sun Jun 18, 2023 5:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to handle License for MySQL, PostgreSQL & Co ?
Replies: 9
Views: 526

Re: how to handle License for MySQL, PostgreSQL & Co ?

ADO is free for all of us and we can work with any RDBMS. In addition, Harbour provides an excellent Library for working with PostGre. I think we should be able to use this library even with HMG. For MySQL/MariaDB, we have FWH built-in library in ...
by richard-service
Fri Jun 16, 2023 4:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to handle License for MySQL, PostgreSQL & Co ?
Replies: 9
Views: 526

Re: how to handle License for MySQL, PostgreSQL & Co ?

ADO is free for all of us and we can work with any RDBMS. In addition, Harbour provides an excellent Library for working with PostGre. I think we should be able to use this library even with HMG. For MySQL/MariaDB, we have FWH built-in library in ...
by nageswaragunupudi
Thu Jun 15, 2023 2:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to handle License for MySQL, PostgreSQL & Co ?
Replies: 9
Views: 526

Re: MariaDb delete

... good as well for MSSQL or is this only for MariaDB? ALL eg.,Dbase,FoxPro,MSAccess,Microsoft SQL,SQLite,Oracle,PostGre (natively) and any other RDBMS with connectionstrings.
by nageswaragunupudi
Sat Jun 03, 2023 2:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 390

Re: XBROWSE Column Question

... by your postings, we introduced automatic SeekNext by pressing F3 key from FWH2304. As of now, this works for arrays, DBF, TDatabase, all ADO rdbms, FW MySql. Yet to implement for dolphin,tmysql,eagle1,postgre, etc.
by nageswaragunupudi
Wed May 10, 2023 12:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

XBrowse and TDataRow (alias FW_Record) work with all kinds of datasources viz., dbf, tdatabase, ado (any rdbms), dolphin, tmysql, fw-mysql, postgre, eagle, etc. This enables the application programmer to write highly portable code. He can use exactly the same code with any ...
by nageswaragunupudi
Sat May 06, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 276

Re: mod_harbour com firebird

... morning There is a folder in c:\harbour\contrib\hbfbird\ that as it says: README 2003-12-23 - Harbour low-level API for Firebird and Interbase RDBMS This work is not finished yet. It's planned to be similar to Harbour TMysql routines. For full firebird documentation look at: Firebird home: ...
by Antonio Linares
Sat Nov 19, 2022 9:32 am
 
Forum: mod_harbour
Topic: mod_harbour com firebird
Replies: 1
Views: 387

DBF: ROLLBACK (built-in feature)

... )  This rolls back any modifications (including DBDELETE() and DBRECALL()) made to the current record in the current work area. Just like any RDBMS, RollBack does not work after COMMIT. FWH was using this feature in TDataBase class for many years. Please see METHOD RollBack(). Limitations ...
by nageswaragunupudi
Sat Sep 10, 2022 4:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF: ROLLBACK (built-in feature)
Replies: 1
Views: 349
Next

Return to advanced search