Search found 1719 matches: recordset

Return to advanced search

RecordSet via Web

I have been using an ADODB RecordSet object to connect to my server over the internet. oRs:Open( cUrl ). Actually very fast, works well. What I don't know, or can't figure out is if I can use this on a secure site. Can't seem to get it ...
by byron.hopp
Thu Mar 28, 2024 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RecordSet via Web
Replies: 0
Views: 215

Re: Question about performance RowSet

... es preferible usar QueryResult, no tiene sentido usar RowSet, dado que no se hará búsqueda, ordenaciones, etc. otro tip importantes es que, en un recordset, cuando usamos la asignación ( oQry:FIELD1 := 10 ) y lectura de un campo del query ( ?oQry:FIELD1 ), (tanto tmysq y tdolphin, en fwh no lo ...
by Eroni
Fri Mar 15, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4009

Re: Question about performance RowSet

... es preferible usar QueryResult, no tiene sentido usar RowSet, dado que no se hará búsqueda, ordenaciones, etc. otro tip importantes es que, en un recordset, cuando usamos la asignación ( oQry:FIELD1 := 10 ) y lectura de un campo del query ( ?oQry:FIELD1 ), (tanto tmysq y tdolphin, en fwh no lo ...
by carlos vargas
Fri Mar 15, 2024 3:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4009

Re: Por qué el error en este SELECT?

... case, I just open the table and I want to show it in an empty xBrowse, the example of your answer is when they try to record. We can safely show a recordset with 0 records in an xbrowse. If oRs != nil   XBROWSER oRsendif  This works even if the recordset has 0 records
by nageswaragunupudi
Sat Mar 02, 2024 2:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Por qué el error en este SELECT?
Replies: 9
Views: 283

Re: Por qué el error en este SELECT?

With ADO we can use MoveFirst(), Move(), etc. when the recordset is empty. It is the normal practice to check (whether fivewin, vb, c#, etc) oRs := FW_OpenRecordSet( ... )if oRs == nil   ? "failed to open"else   if ...
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: 283

Re: Mr. Rao, refresh a Tree

Mr. Rao: the browse recordset has several columns although in the browse I only show three, the ones necessary to form the tree, and the editing of all the columns is done in a dialog, I am going to upload a video to better explain ...
by Armando
Fri Feb 09, 2024 12:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, refresh a Tree
Replies: 21
Views: 714

connecting SQL SERVER VIA ODBC PROLEM

... RETURN(.F.) END // since here de code works ok // now try to open de recorset and here is the problem TRY orsPed := TOleAuto():New("adodb.recordset") // orsPed:= CreateObject("ADODB.Recordset") CATCH oError MsgStop( "No se ha podido crear el RECORDSET de Pedidos!", ...
by MANOLO
Mon Jan 29, 2024 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: connecting SQL SERVER VIA ODBC PROLEM
Replies: 0
Views: 327

Re: CONEXION ADODB SQL SERVER

... también, la conexión odbc me la hace perfectamente, el problema es cuando le lanzo el : <CODE> TRY orsPed := TOleAuto():New("adodb.recordset") // orsPed:= CreateObject("ADODB.Recordset") CATCH oError MsgStop( "No se ha podido crear el RECORDSET de Pedidos!", ...
by MANOLO
Mon Jan 29, 2024 5:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 4
Views: 284

CONEXION ADODB SQL SERVER

... con acceso a mysql mediante ado, pero ahora nos han cambiado la base de datos por sql server, y me estoy volviendo loco me da error en el recordset, os paso como lo hago a ver si a alguien se le ocurre el porqué: oApp:oCon:ConnectionString:= "Provider=SQLOLEDB;Password=xxxx3;Persist ...
by MANOLO
Mon Jan 29, 2024 9:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 4
Views: 284

CONEXION ADODB SQL SERVER

... con acceso a mysql mediante ado, pero ahora nos han cambiado la base de datos por sql server, y me estoy volviendo loco me da error en el recordset, os paso como lo hago a ver si a alguien se le ocurre el porqué: oApp:oCon:ConnectionString:= "Provider=SQLOLEDB;Password=xxxx3;Persist ...
by MANOLO
Mon Jan 29, 2024 9:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 0
Views: 146

Re: oRs:Find() ado en dos campos, sobre xbrowse, como?

Hola Leandro, Se me ocurre que conviertas a un Hash el recordset algo así, esta hecho al vuelo no se si funciona.   cBusqueda:="ll_consec="+alltrim(cFcEn)  hhash    :={ => }    oRs:MoveFirst() /// Voy al primero  ...
by audisys
Fri Jan 19, 2024 10:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: oRs:Find() ado en dos campos, sobre xbrowse, como?
Replies: 7
Views: 422

Re: Browse Json

... := "ARRAY" but get no data. Not sure how to set the bGoTop, bGoBottom, bSkip, bLogicLen blocks. For now I am creating a dynamic recordset from the json object, but I feel like it is an extra step. Thanks, again...
by byron.hopp
Thu Jan 11, 2024 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Browse Json
Replies: 8
Views: 833

Re: FW_OpenRecordSet lento en red

Jeorge Try the old fashoned way where you set the Recordset properties manually ... oRs1 := TOleAuto():New( "ADODB.Recordset" )oRs1:CursorType     := 1        // opendkeysetoRs1:CursorLocation := 3       // local cacheoRs1:LockType ...
by nageswaragunupudi
Mon Dec 18, 2023 6:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenRecordSet lento en red
Replies: 8
Views: 615

Re: FW_OpenRecordSet lento en red

Jeorge Try the old fashoned way where you set the Recordset properties manually ... oRs1 := TOleAuto():New( "ADODB.Recordset" )oRs1:CursorType     := 1        // opendkeysetoRs1:CursorLocation ...
by Rick Lipkin
Mon Dec 18, 2023 12:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenRecordSet lento en red
Replies: 8
Views: 615

Re: Convert a print to Rtf or doc

... FASTEDIT with vertical and horizontal scrolling and facility to edit values inside the cell, validate and immediately save to dbf,recordset or whatever. So they choose what helps them to develop the application faster. In fact I have been thinking of personally approaching you ...
by nageswaragunupudi
Fri Dec 01, 2023 2:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert a print to Rtf or doc
Replies: 33
Views: 3463
Next

Return to advanced search