Search found 27 matches: adopenstatic

Return to advanced search

Re: FW_OpenRecordSet lento en red

... speed up the query? Another important information to all of u: Whatever value we specify for oRs:CursorType, ADO invariably opens the recordset as adOpenStatic only for CursorLocation adUseClient. There is not point in assigning a value like adOpenKeySet or adOpenDynamic
by nageswaragunupudi
Mon Dec 18, 2023 6:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenRecordSet lento en red
Replies: 8
Views: 617

Re: Error from ADO

... we want 1. adOpenKeyset : Whether we like or not this work only with adUseServer 2. adOpenDynamic : This also does not work with adUseClient 3. adOpenStatic: This is the only choice left to us. Even if you try to use adOpenKeySet or adOpenDynamc the ADO system will open the recordset with adUseStatic ...
by Horizon
Sat Aug 18, 2018 3:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error from ADO
Replies: 14
Views: 3501

Re: Error from ADO

... we want 1. adOpenKeyset : Whether we like or not this work only with adUseServer 2. adOpenDynamic : This also does not work with adUseClient 3. adOpenStatic: This is the only choice left to us. Even if you try to use adOpenKeySet or adOpenDynamc the ADO system will open the recordset with adUseStatic ...
by nageswaragunupudi
Fri Aug 11, 2017 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error from ADO
Replies: 14
Views: 3501

Re: Nuevo ADORDD

... de conteo más rápidos. No almacena en caché ninguna tabla con la cláusula WHERE. Todos los cursores ADO cambiaron en el código de adoptendynamic a adopenstatic, aunque siempre Comenzó como adoptenstatic. Nuevas características: Nueva opción PORT en SET ADO DEFAULT DATABASE ... ADO_ORDINFO ordwildseek ...
by AHF
Tue Mar 07, 2017 9:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16561

Re: ADO RDD xHarbour

... ADOPREOPENTHRESHOLD Faster counting records. Doesn't cache any tables with WHERE clause. All ADO cursors changed in the code from adopendynamic to adopenstatic, although it always started as adopenstatic. New features: New option PORT in SET ADO DEFAULT DATABASE ... ADO_ORDINFO ordwildseek implemented ...
by AHF
Tue Mar 07, 2017 9:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446349

Re: ADO : doesn't work anymore

... // 3,3,3 !!!!! // Is it normal that cursortype is changed in 3 ? Always and at all times, a client side record-set is opened with cursor-type adOpenStatic only, whatever cursortype we specify while opening the recordset. In other words, it is just useless and meaningless for us to specify ...
by nageswaragunupudi
Mon Nov 07, 2016 12:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO : doesn't work anymore
Replies: 2
Views: 684

Adoordd , xbrowse

... , oRs:LockType 3 3 3 In AdoRdd i can see oRecordSet:Open(......., , adOpenDynamic , .... ) Cursortype ist'n 2 as expected but 3 (adOpenStatic) 2) Ors:Delete() gives an error without a proper message 3) Ors:Fileds("First"):Value := "Test" , gives : (DOS Error ...
by Franklin Demont
Thu Oct 27, 2016 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adoordd , xbrowse
Replies: 9
Views: 2315

Re: Ayuda Sobre Paradox

... ) oCommand := TOLEAUTO():New("adodb.command") Abriba:CacheSize := 50 Abriba:CursorLocation := adUseClient Abriba:CursorType := adOpenStatic Abriba:LockType := adLockPessimistic alert(cSelect +" "+ cString) TRY Abriba:Open( cSelect , cString ,1, 3 ) CATCH oError MsgStop(oError:Operation+CRLF+oError:Description,"No ...
by ruben Dario
Fri Oct 24, 2014 4:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Sobre Paradox
Replies: 2
Views: 581

Re: ADO RecordSet: What is the best CursorType to use?

NageswaraRao,

nageswaragunupudi wrote:Note: If the CursorLocation property is set to adUseClient, the only valid setting for the CursorType property is adOpenStatic.


You missed "Remote Data Service Usage". :-)

EMG
by Enrico Maria Giordano
Mon Jun 17, 2013 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet: What is the best CursorType to use?
Replies: 2
Views: 1026

ADO RecordSet: What is the best CursorType to use?

What is the most desirable cursor type to use while opening a Recordset in ADO? adOpenKeySet or adOpenDynaic or adOpenStatic? We almost always open RecordSet on client side, using CursorLocation as adUseClient (3) Brief note on CursorLocation: It is not necessary that we specify ...
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: 1026

Re: Pregunta Mysql al Abrir la misma tabla desde 2 PC

... TOleAuto():New( "ADODB.Recordset" ) oRecordSet[nRecordSet]:CursorLocation := adUseClient oRecordSet[nRecordSet]:CursorType := adOpenStatic oRecordSet[nRecordSet]:LockType := adLockPessimistic oRecordSet[nRecordSet]:Open( "Select "+ cSelect +" from " + cTabla ...
by jbrita
Wed Jul 13, 2011 1:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta Mysql al Abrir la misma tabla desde 2 PC
Replies: 7
Views: 1387

Re: BROWSE com muitos registros - MYSQL remoto

... Las incorporaciones, cambios y eliminaciones que hacen otros usuarios permanecen visibles, y se admiten todo tipo de movimientos entre registros adOpenStatic, Cursor estático. Una copia estática de un conjunto de registros que se puede usar para buscar datos o generar informes. Las incorporaciones, ...
by sjingo
Thu Mar 04, 2010 3:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: BROWSE com muitos registros - MYSQL remoto
Replies: 14
Views: 3984

TXT to SQL

... done via ADO. This would be the method that I try to use: method TXTtoSQL() class TFormPrincipal LOCAL o LOCAL oRs LOCAL a LOCAL adUseClient LOCAL adOpenStatic //Open conexion. WITH OBJECT o := TAdoDatasource():Create() :cConnect := "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security ...
by DiegoCandel
Thu Dec 31, 2009 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXT to SQL
Replies: 1
Views: 654

TXT to SQL

... hago vía ADO. Este sería el método que intento utilizar: method TXTtoSQL() class TFormPrincipal LOCAL o LOCAL oRs LOCAL a LOCAL adUseClient LOCAL adOpenStatic //Abro la conexión. WITH OBJECT o := TAdoDatasource():Create() :cConnect := "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist ...
by DiegoCandel
Thu Dec 31, 2009 11:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TXT to SQL
Replies: 5
Views: 1062

Error al compilar con el buildx

... :Connect() END WITH OBJECT oRs := TSqlQuery():Create( o ) :oDatasource := o :ncursorlocation := adUseClient :ncursortype := adOpenStatic :cSelect := "Select * FROM clientes" END oRs:Open() IF !oRs:lOpen MsgInfo("ERRRO") ENDIF ::cFicheroR := Memoread("Info.txt") ...
by DiegoCandel
Mon Dec 28, 2009 5:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al compilar con el buildx
Replies: 12
Views: 2275
Next

Return to advanced search