Search found 10 matches: clientside

Searched query: clientside

by nageswaragunupudi
Sat Sep 21, 2013 1:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange numeric behavior
Replies: 22
Views: 5063

Re: Strange numeric behavior

Mr EMG

I agree. I also found this regarding MySQL:

m

Thanks for the information. However its somewhat comforting that clientside recordsets are working well and inserts are working well.

In the case of MSAcess can you take the trouble of doing this test?

oRs:AddNew( { "test" }, { 12.50 } )
and ...
by nageswaragunupudi
Mon Jun 17, 2013 3:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet: What is the best CursorType to use?
Replies: 2
Views: 1171

ADO RecordSet: What is the best CursorType to use?

... a recordset. If we set connection object's CursorLocation property to adUseClient, all recordsets opened with that connection are all by default clientside only. We save one line of code while opening every recordset. Even otherwise it is always desirable to set connection object's CursorLocation to ...
by nageswaragunupudi
Tue Jan 25, 2011 5:46 am
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo del uso del un recorset con xbrowse
Replies: 26
Views: 10350

Re: Ejemplo del uso del un recorset con xbrowse

goosfancito wrote:hola.

estoy incursionando oracle con ado y resulta que siempre recordCount() me devuelve -1, pero esto es falso, tengo datos.

porque pasa esto?

Serverside recordsets return -1 as RecordCount.
We need to open recordsets on clientside, by using adUseClient, for browsing. Default is adUseServer.
by nageswaragunupudi
Sun Aug 09, 2009 3:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: Intermittant xBrowse ADO error ( again )
Replies: 61
Views: 17647

Re: Intermittant xBrowse ADO error ( again )

... of a recordset can be checked either by ( oRs:Bof .and. oRs:Eof ) or by ( oRs:RecordCount == 0 ) safely.
( Note: Our discussion is confined to ClientSide recordsets only ).

When recordset is empty almost all other methods ( bookmark, absoluteposition, etc ) fail.

So, a codeblock like this ...
by pymsoft
Thu Jul 24, 2008 12:55 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ADOBASE, ultima version muy mejorada.
Replies: 27
Views: 7282

Adolfo:

Tiempos de respuesta:

ServerSide = 6.265 pero no me muestra datos...
ClientSide = 6.422
Páginado: 1.688

browse simple: 8.203
anidado: me dice 0.609 pero seguramente es el tiempo del segundo browse.
paginado: 0.953, pero cuando presiono PgDn me da este error ...
by Armando
Sat Jun 14, 2008 7:48 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ADOBASE, ultima version muy mejorada.
Replies: 27
Views: 7282

Adolfo:

Tiempos de respuesta:

ServerSide = 7.297
ClientSide = 6.860
Páginado: 1.093

Fecha y hora de la prueba: 14/Jun/2008 14:45hrs desde México.

Conexión de 1mb

Por cierto despues del browse anidado al salir de la aplicación me tiró este error, por si te sirve de algo

Destructors ...
by nageswaragunupudi
Sun Feb 17, 2008 5:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Someone has an example of the use of a recorset with xbrowse
Replies: 19
Views: 5979

You shd open your recordset on clientside
Please reproduce your code for opening the recordset. I shall let you know what to do
by nageswaragunupudi
Sun Feb 10, 2008 11:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Another for MDB recorset
Replies: 41
Views: 11797

... You found the reason. Most of the data and methods do not work on serverside cursors and some work only for serverside cursors but not for clientside.

I have a few advices to make in general, based on theory, widely accepted good practices, confirmed by our own experiences.

It is desirable ...
by nageswaragunupudi
Tue Sep 18, 2007 11:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD Question
Replies: 4
Views: 1525

Still this is a clientside recordset. ROWNUM of Oracle gives numbers from 1 onwards for the rows returned. Same values as ADO absolute position. When we use ADO we dont need to use ROWNUM. (Note: Rownum helps only to know the order in which we read oringally after we sort or filter rows in ADO on ...
by nageswaragunupudi
Mon Jun 25, 2007 12:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADO update visability between workstations
Replies: 18
Views: 6071

There was a discussion above to use adOpenDynamic or adOpenKeyset for opening a recordset. But when a recordset is opened on clientside (with cursorlocation as adUseClient) the provider ignores what we speicfy as CursorType (adOpenDynamic or Keyset), and returns a recordset with cursortype as ...