Search found 63 matches: trecset

Return to advanced search

Re: mariadb_connect bigdata and read as page

nageswaragunupudi wrote:Please see
viewtopic.php?f=3&t=44175


What is different between ::RowSet() and ::RecSet()?
Which the latest table FWH version of TRECSET ?

I have FWH2304 but not much of information of TRECSET, such as full parameter.

Thanks in advance,
by dutch
Sun Feb 11, 2024 3:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: mariadb_connect bigdata and read as page
Replies: 3
Views: 295

Re: RAO advice on using Mysql

... it is essential to read and display a big table in full. This is not possible with other libraries like ADO,etc. But we recommend avoid using TRecSet to the extent possible and to use RowSet reading required parts of the table using WHERE clause. This is the standard practice.
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 971

Re: Request For TDataRow Example for MariDB

... why you do not find many examples directly using TDataRow is because you do not need to deal with it explicitly. XBrowse and classes like RowSet, TRecSet, TDatabase. etc implicity internally use this class to provide Edit()
by nageswaragunupudi
Tue Aug 01, 2023 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request For TDataRow Example for MariDB
Replies: 4
Views: 271

Re: Mr. Rao - Error using BIT type with TRecSet Class - Ado

... }, .t. )   if oCn == nil      ? "connect fail"      return nil   endif   oRs   := TRecSet():New( nil, "select * from customer", oCn )   oRs:Open()   if oRs:IsOpen      ? oRs:Married, ValType( ...
by nageswaragunupudi
Mon Aug 29, 2022 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao - Error using BIT type with TRecSet Class - Ado
Replies: 3
Views: 375

Mr. Rao - Error using BIT type with TRecSet Class - Ado

... cUser, cPassWord }, .t. )  Now I need to open a Table using this code       cSql:= "SELECT * FROM CUSTOMER"      oTable:=TRecSet():New():Open( cSql, oAp:oMySql ) For this line, I need to retrieve a Logical field, I set this field as BIT @ 5.7, 22 ...
by Compuin
Sun Aug 21, 2022 5:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao - Error using BIT type with TRecSet Class - Ado
Replies: 3
Views: 375

Re: De xHarbour a Harbour

... from C:\XBASE\HARBOUR32\LIB\FIVEH.LIB|DATAROW Error: Unresolved external '_HB_FUN_HSETCASEMATCH' referenced from C:\XBASE\HARBOUR32\LIB\FIVEH.LIB|TRECSET Error: Unresolved external '_HB_FUN_HGETCASEMATCH' referenced from C:\XBASE\HARBOUR32\LIB\FIVEH.LIB|TRECSET Error: Unresolved external '_HB_FUN_STRTOHEX' ...
by JoseAlvarez
Mon Oct 04, 2021 2:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De xHarbour a Harbour
Replies: 35
Views: 3255

Re: edit a record with tdatabase - I am in trouble

Yes.
FWH has a built-in library for MySQL.
Can connect to MySql, open tables, and use them just like TDatabase.

Full documentation:
viewtopic.php?f=3&t=33286

If you are already using ADO for MySQL, you can use TRecSet class, which works similarly to TDatabase.
by nageswaragunupudi
Mon Jun 21, 2021 7:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a record with tdatabase - I am in trouble
Replies: 8
Views: 1294

Re: nuevo en el fw Harbour

... referenced from X:\HARB\FWH\LIB\FIVEH.LIB|DBFFUNC2 Error: Unresolved external '_HB_FUN_HGETCASEMATCH' referenced from X:\HARB\FWH\LIB\FIVEH.LIB|TRECSET Error: Unresolved external '_HB_FUN_STRTOHEX' referenced from X:\HARB\FWH\LIB\FIVEH.LIB|TRECSET Error: Unresolved external '_HB_FUN_HB_ENUMINDEX' ...
by goosfancito
Wed Feb 03, 2021 1:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: nuevo en el fw Harbour
Replies: 5
Views: 635

Re: Quiero comenzar con sqlite

With ADO,
Code: Select all  Expand view
oRs:Fields( 'ID' ):Value

is the only way, unless you use FWH TRecSet class.

ADO from here
https://www.w3schools.com/asp/ado_intro.asp

Good tutorial for SQL
https://www.w3schools.com/sql/
by nageswaragunupudi
Thu Aug 27, 2020 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Quiero comenzar con sqlite
Replies: 34
Views: 4771

Re: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset

FWH complete documentation for this TRecSet Class?

We did not prepare documentation for this class.
Please study the source code provided.
by nageswaragunupudi
Sun May 10, 2020 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset
Replies: 3
Views: 661

Re: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset

... be displayed on oBrw2. - oBrw2 can only display the correct data in the oBrw2:Filter command only. please I was given a full explanation about TRecSet Class, starting from the beginning of the formation, and the commands that can be used for that. I am interested in using this class, where ...
by Mulyadi
Sun May 10, 2020 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset
Replies: 3
Views: 661

Re: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset

Field code is VarChar(5) and you are storing only 3 char value. TRecSet pads the value to 5 chars So, instead of             xcode := ors1:Code    use             xcode := Trim( ors1:Code ...
by nageswaragunupudi
Sat May 09, 2020 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset
Replies: 3
Views: 661

FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset

Please help for my case like this: if open data with FW_OpenTRecSet(oCon, cSql) then the data in oBrw2 is not refreshed, but if it is open in FW_OpenRecordSet( oCon, cSql ) mode then the data in oBrw2 can be displayed. in TRecSet mode can run if only filter ...
by Mulyadi
Sat May 09, 2020 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 20.04 Help for xbrowser TRecSet vs ADO Recordset
Replies: 3
Views: 661
Next

Return to advanced search