Search found 271 matches: recordsets

Return to advanced search

Re: Problema super raro

... variable: oRsWrk (0x80004005): Microsoft OLE DB Provider for ODBC Drivers Args: [ 1] = C SELECT * INTO oRsWrk FROM oRsDet oRsWrk and oRsDet are RecordSets. You should not use recordsets. Use table names. if the table names are "original" and "work", then the sql is SELECT ...
by nageswaragunupudi
Sun Mar 24, 2024 10:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2128

Re: Por qué el error en este SELECT?

... else      oRs:MoveFirst()      // or whatever  endifendif  You can xbrowse empty recordsets, because xBrowse knows when to use MoveFirst() and when not to use.
by nageswaragunupudi
Sat Mar 02, 2024 2:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Por qué el error en este SELECT?
Replies: 9
Views: 295

Re: RAO advice on using Mysql

:ActiveConnections is only for ADO recordsets. In fwmaria lib, it is oRs:oCn. To change the sql, please make a new RecSet object, set it to oBrw:oDbf and then close the old RecSet object You may try this sample and use similar logic #include ...
by nageswaragunupudi
Wed Feb 07, 2024 4:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 979

Re: DBF . Commit

... and the last thing I do with dbfcdx is to move the record pointer after I write to the disk with GoTo Recno() ADO is a bit different with SQL .. Recordsets can be added to or edited one record at a time and when a committ is made all I do is issue oRs:Update(), and perhaps a SysReFresh() and ...
by Rick Lipkin
Tue Oct 24, 2023 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2346

Re: Request : new PostgreSQL OLEDb-Provider

It has no effect on Opening ADO connctions, Opening RecordSets and using the recordsets in any manner we need. hi, ok ... but why "is"   oCn:Properties( "DBMS Name" ):Value and/or   oCn:Properties( "Extended Properties" ...
by Jimmy
Mon Sep 11, 2023 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

... function. This is basically intended for internal usage to help the function FW_ValToSQL() It has no effect on Opening ADO connctions, Opening RecordSets and using the recordsets in any manner we need.
by nageswaragunupudi
Mon Sep 11, 2023 6:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Error in FW_ArrayAsRecordSet Seek - Please help

... only when the recordset opens a physical table as Serverside Cursor using adUseServer and with adCmdTableDirect option and all other kinds of RecordSets do not support Seek method. (Mostly RecordSets are open with adUseClient) So, this recordset does not support "seek" method. Instead ...
by nageswaragunupudi
Tue Aug 08, 2023 6:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in FW_ArrayAsRecordSet Seek - Please help
Replies: 6
Views: 359

Re: Problem With oRs:Requery()

Mr Rao, I have Fivewin 19.12, Can I request recordsets from MSSQl using parameter with my versión? Using the code: cCadsql1:="SELECT e.ITEMNMBR, a.ITEMDESC, e.LOCNCODE, e.QTYONHND, e.ATYALLOC, e.QTYONHND - e.ATYALLOC, a.SELNGUOM, IV40201.baseuofm,"+;" ...
by mariordz
Mon Oct 17, 2022 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem With oRs:Requery()
Replies: 4
Views: 518

Re: FW_OpenRecordSet and NOWAIT dialog

Create your Connection once at the top of your program and use that connection to open all your recordsets throughout your application ..


Rick
by Rick Lipkin
Tue Oct 26, 2021 3:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenRecordSet and NOWAIT dialog
Replies: 8
Views: 797

Re: GetNewAlias() existe para ADO?

There is no need for using Aliases in ADO.
We can open any number of recordsets for the same table at the same time and each recordset acts like different alias for dbf.
by nageswaragunupudi
Thu Sep 23, 2021 6:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GetNewAlias() existe para ADO?
Replies: 5
Views: 752

Re: FW_DbfToHTML() : Image handling capabilities

elvira wrote:What about Adotohtml()?

Thank you!!



For recordsets not containing BLOB fields:
Code: Select all  Expand view
cHtml := FW_AdoRsToHTML( oRs )


For recordsets containing BLOB fields:
Code: Select all  Expand view
  cHtml := FW_ArrayToHTML( RsGetRows( oRs ), FW_RecSetHeaders( oRs ) )
 
by nageswaragunupudi
Fri Apr 16, 2021 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_DbfToHTML() : Image handling capabilities
Replies: 6
Views: 992

New FTDN January/Enero 2021 (FWH 21.01)

... tree from the data and switches to Tree Browse. This feature works for most datasources like arrays, dbf, rowsets but does not work with ADO recordsets. Now it works with ADO recordsets also. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=39913 - In case of tree browses, COLUMNS ...
by Antonio Linares
Sun Feb 07, 2021 9:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1256

Re: Mr. Rao Pls your help

... oRs:Bookmark := 0.0 errors out and when oRs:Eof() we can not access any field values. For this reason, we need to modify xbrowse to handle ADO recordsets. These modifications are made in FWH 21.01. We publish here the changes you can make to xbrowse.prg to make it work for ADO recordsets. 1) ...
by nageswaragunupudi
Sun Jan 31, 2021 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao Pls your help
Replies: 12
Views: 1654

MARIADB CANTIDAD DE TABLAS ABIERTAS SIMULTANEAMENTE

Hola Señores ! En un módulo de facturación, en el cuál normarmente se abren muchas tablas simultaneamente; ¿ Puedo abrir varios recordsets por cada una ? (simultaneamente) ¿y puedo identificar a cada recordset de alguna manera como lo hacía con los DBF, por ejemplo con sele 1, sele2, etc. ...
by pedroluis
Thu Jan 28, 2021 5:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MARIADB CANTIDAD DE TABLAS ABIERTAS SIMULTANEAMENTE
Replies: 2
Views: 499

Re: Select...SQL

Dario Several ways you can do this .. both use RecordSets .. Rao has created a set of ADO wrappers in \source\function\AdoFuncs.prg .. or oRs := TOleAuto():New( "ADODB.Recordset" )oRs:CursorType     := 1   ...
by Rick Lipkin
Sat Nov 28, 2020 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select...SQL SOLUCIONADO
Replies: 3
Views: 441
Next

Return to advanced search