Search found 19 matches: lockoportunistic

Return to advanced search

Error ADODB.Recordset/6 DISP_E_UNKNOWNNAME: ISKINDOF

... "ADODB.Recordset" ) oRsEmp:CursorType := 1 // opendkeyset oRsEmp:CursorLocation := 3 // local cache oRsEmp:LockType := 3 // lockoportunistic TRY oRsEmp:Open( cSQL,xCONNECT ) CATCH oErr MsgInfo( "Error in Opening EMPLOYEES table" ) RETURN(.F.) END TRY xbrowse( oRsEmp ...
by Rick Lipkin
Wed Mar 01, 2023 10:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error ADODB.Recordset/6 DISP_E_UNKNOWNNAME: ISKINDOF
Replies: 1
Views: 166

MSSQL and XBROWSE

... is it possible with RecordSet ? I think i have to change the CursorType . oRsa:= CREATEOBJECT( "ADODB.Recordset" ) oRsa:LockType := 3 // lockoportunistic oRsa:CursorType := 1 // opendkeyset oRsa:CursorLocation := 3 // local cache * Thanks, Philippe
by Jack
Wed Nov 03, 2021 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSSQL and XBROWSE
Replies: 1
Views: 339

Re: Busqueda SQL

... clientes Order by RFC" oRecordSet:CursorType := 1 // opendkeyset oRecordSet:CursorLocation := 3 // local cache oRecordSet:LockType := 3 // lockoportunistic oRecordSet:Open() oRecordSet:MoveFirst() oRecordSet:Find("RFC = " + "'" + xRfc + "'" ) //Aqui es donde ...
by servicomver
Fri Jul 13, 2018 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda SQL
Replies: 15
Views: 3079

Re: Error en SQL

Mil disculpas ya vi lo que se me paso tomar en cuenta :oops: :oops: :oops:
oRecordSet:LockType := 3 // lockoportunistic

Gracias
by servicomver
Thu Jan 25, 2018 9:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en SQL
Replies: 3
Views: 1063

ADO question: Access is not refresing properly

... "ADODB.Recordset" ) oRsUser:CursorType := 1 // opendkeyset oRsUser:CursorLocation := 3 // local cache oRsUser:LockType := 3 // lockoportunistic TRY oRsUser:Open( cSQL, cStr ) oCn := oRsUser:ActiveConnection oRdbms := FW_RDBMSName( oCn ) CATCH oError ado_ErrorNoRecordSet(oError) ...
by lucasdebeltran
Sun Jun 23, 2013 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO question: Access is not refresing properly
Replies: 10
Views: 2831

ADO with Oracle

... := TOleAuto():New( "ADODB.Recordset" ) oRs:CursorType := 1 // opendkeyset oRs:CursorLocation := 3 // local cache oRs:LockType := 3 // lockoportunistic TRY oRs:Open( cSQL, cConnStr ) CATCH oErr MsgInfo( "Error in Opening Oracle table" ) RETURN(.F.) END TRY oRs:MoveFirst() ...
by Mulyadi
Thu Sep 20, 2012 5:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO with Oracle
Replies: 11
Views: 2063

Re: Listbox via MS SQL

Darrell I have been using ADO for many years and found when you set up your recordset object to use the opendkeyset, local cache and lockoportunistic options. Most importantly is the Local Cache option which takes your recordset and places it in local memory of the workstation. You will ...
by Rick Lipkin
Thu Jul 05, 2012 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox via MS SQL
Replies: 6
Views: 1753

Re: Action execute when at bottom of xbrowse

... := TOleAuto():New( "ADODB.Recordset" ) oRs:CursorType := 1 // opendkeyset oRs:CursorLocation := 3 // local cache oRs:LockType := 3 // lockoportunistic TRY oRs:Open(cSQL,< sql-lite connection string > ) CATCH oErr Close Temp MsgInfo( "Error in Opening YourTable table" ...
by Rick Lipkin
Tue Feb 21, 2012 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Action execute when at bottom of xbrowse
Replies: 7
Views: 1699

... := TOleAuto():New( "ADODB.Recordset" ) oRsProj:CursorType := 1 // opendkeyset oRsProj:CursorLocation := 3 // local cache oRsProj:LockType := 3 // lockoportunistic TRY oRsProj:Open( cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD ...
by Rick Lipkin
Wed Aug 06, 2008 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Sql Query limitations ??
Replies: 1
Views: 740

ADO Sql Query limitations ??

... := TOleAuto():New( "ADODB.Recordset" ) oRsProj:CursorType := 1 // opendkeyset oRsProj:CursorLocation := 3 // local cache oRsProj:LockType := 3 // lockoportunistic TRY oRsProj:Open( cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User Id='+xUSERID+';Password='+xPASSWORD ...
by Rick Lipkin
Tue Aug 05, 2008 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Sql Query limitations ??
Replies: 1
Views: 740

TestSmtp

... := TOleAuto():New( "ADODB.Recordset" ) oRsuser:CursorType := 1 // opendkeyset oRsuser:CursorLocation := 3 // local cache oRsuser:LockType := 3 // lockoportunistic cSQL := "SELECT * FROM USERINFO order by USERID" TRY oRsuser:Open( cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';Initial Catalog='+xCATALOG+';User ...
by Rick Lipkin
Tue Jul 08, 2008 7:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TestSmtp
Replies: 6
Views: 1609

... oRs := TOleAuto():New( "ADODB.Recordset" ) oRs:CursorType := 1 // opendkeyset oRs:CursorLocation := 3 // local cache oRs:LockType := 3 // lockoportunistic cSQL := "SELECT * FROM Suntrack.EFIS_UST_RELEASES" TRY oRS:Open(cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';User Id='+xUSERID+';Password='+xPASSWORD ...
by Rick Lipkin
Thu Dec 20, 2007 12:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Connection to Oracle 10g
Replies: 14
Views: 4068

ADO Connection to Oracle 10g

... oRs := TOleAuto():New( "ADODB.Recordset" ) oRs:CursorType := 1 // opendkeyset oRs:CursorLocation := 3 // local cache oRs:LockType := 3 // lockoportunistic cSQL := "SELECT * FROM EFIS_UST_RELEASES" TRY oRS:Open(cSQL,'Provider='+xPROVIDER+';Data Source='+xSOURCE+';User Id='+xUSERID+';Password='+xPASSWORD ...
by Rick Lipkin
Wed Dec 19, 2007 8:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Connection to Oracle 10g
Replies: 14
Views: 4068

... oRs2 := TOleAuto():New( "ADODB.Recordset" ) oRs2:CursorType := 1 // opendkeyset oRs2:CursorLocation := 3 // local cache oRs2:LockType := 3 // lockoportunistic IF xADMIN = 'Y' cSQL := "SELECT * FROM GROUPS order by progid,code" cTITLE := "GROUP Select for ALL" ELSE cSQL := "SELECT * from GROUPS ...
by Rick Lipkin
Fri Dec 14, 2007 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Freeze column and goto a column ( ADO )
Replies: 8
Views: 1661

... TOleAuto():New( "ADODB.Recordset" ) oRsMTP:CursorType := 1 // opendkeyset oRsMTP:CursorLocation := 3 // local cache oRsMTP:LockType := 3 // lockoportunistic cSQL := "SELECT * FROM MTRPOOL where AGENEID = '"+xAGENEID+"' order by AGENCY,MTRPOOL" TRY oRsMTP:Open( cSQL,'Provider='+xPROVIDER+';Data ...
by Rick Lipkin
Fri Dec 14, 2007 2:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to turn OFF the ESC key ( globally )
Replies: 10
Views: 2310
Next

Return to advanced search