Search found 482 matches: provider

Return to advanced search

Re: Using llama64.lib with Harbour

Some provider block .ru.
by Otto
Thu Mar 28, 2024 12:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using llama64.lib with Harbour
Replies: 4
Views: 1143

Re: Problema super raro

... (DOS Error -2147352567) WINOLE/1007 [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community]Undeclared 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 ...
by nageswaragunupudi
Sun Mar 24, 2024 10:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2118

Re: Problema super raro

... (DOS Error -2147352567) WINOLE/1007 [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community]Undeclared variable: oRsWrk (0x80004005): Microsoft OLE DB Provider for ODBC Drivers Args: [ 1] = C SELECT * INTO oRsWrk FROM oRsDet with this code          DO WHILE ! oRsDet:EOF()  ...
by Armando
Sun Mar 24, 2024 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2118

connecting SQL SERVER VIA ODBC PROLEM

... we are made a change in the server and we have changed mysql by sql server and we have follow problem: [CODE] oApp:oCon:ConnectionString:= "Provider=SQLOLEDB;Password=xxxx3;Persist Security Info=True;User ID=XXXX;Initial Catalog=ERP6_base;Data Source=185.80.87.6\SQLEXPRESS2019" TRY ...
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

CONEXION ADODB SQL SERVER

... 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 Security Info=True;User ID=XXXX;Initial Catalog=ERP6_base;Data Source=185.80.87.6\SQLEXPRESS2019" TRY ...
by MANOLO
Mon Jan 29, 2024 9:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 4
Views: 288

CONEXION ADODB SQL SERVER

... 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 Security Info=True;User ID=XXXX;Initial Catalog=ERP6_base;Data Source=185.80.87.6\SQLEXPRESS2019" TRY ...
by MANOLO
Mon Jan 29, 2024 9:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION ADODB SQL SERVER
Replies: 0
Views: 146

Re: Consuta sobre MariaDB/MySql

... for 8 hours, FW built-in library automatically reconnects if the user attempts to communicate with the server. 1) Contract with a good service provider. 2) Use FW built-in library which provides automatic reconnection feature transparently. My advice is to connect at the beginning of the application ...
by nageswaragunupudi
Wed Jan 24, 2024 12:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consuta sobre MariaDB/MySql
Replies: 8
Views: 464

Re: Request : new PostgreSQL OLEDb-Provider

hi,

thx for Answer.

i do have already CursorLocation and FASTEDIT in Sample ...

what do you mean with "inline edit" , how :?:
by Jimmy
Wed Sep 20, 2023 11:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

but "save" seems not work

Try inline edit.

Any valid ADO recordset is recognized as RecordSet.

To start with just use
Code: Select all  Expand view
XBROWSER oRs FASTEDIT


Try to add CursorLocation of connection object also as adUseClient.'
by nageswaragunupudi
Tue Sep 19, 2023 2:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

hi, as i have no "real" OLEDB Driver for PostgreSQL i try to use PMDAPGS.DLL i can XBOWSER / XBROWSE PostgreSQL Table but "save" seems not work have found out that PMDAPGS.dll was "identify" as "XBR" when try to "save" PostgreSQL Data but i need METH...
by Jimmy
Mon Sep 18, 2023 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

...  EDITVARS cServer, cDatabase, cUserName, cPassword TITLE "PMDAPGS" + " : Server login"   try      oCn:Open( "Provider='PMDAPGS';Server='"+cServer+"';Database='"+cDataBase+"';User='"+cUsername+"';Password='"+cPassword+"'") ...
by Jimmy
Tue Sep 12, 2023 7:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

Can I see your code for opening ado connection and recordset?
by nageswaragunupudi
Tue Sep 12, 2023 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

... this is right   EDITVARS cServer, cDatabase, cUserName, cPassword TITLE "PMDAPGS" + " : Server login"   oCn:Open( "Provider='PMDAPGS';Server='"+cServer+"';Database='"+cDataBase+"';User='"+cUsername+"';Password='"+cPassword+"'") ...
by Jimmy
Tue Sep 12, 2023 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: Request : new PostgreSQL OLEDb-Provider

If you want to see all properties of any connection object:
Code: Select all  Expand view
oCn := FW_OpenAdoConnection( <your-connectionstring>, .t. )
if oCn == nil
   ? "Fail"
else
   XBOWSER oCn  // this shows all properties
   // other works
   oCn:Close()
endif
by nageswaragunupudi
Mon Sep 11, 2023 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

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" ):Value Empty() ... :?: it is &qu...
by Jimmy
Mon Sep 11, 2023 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697
Next

Return to advanced search