Search found 61 matches: connectionstring

Return to advanced search

connecting SQL SERVER VIA ODBC PROLEM

... made by FW works fine, now 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" ...
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

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

CONEXION ADODB SQL SERVER

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

Re: Fivewin and ADO

can i use these ConnectionString with Fivewin Yes oCn := FW_OpenAdoConnection( cYourConnectionString, .t. ) Syntax: FW_OpenAdoConnection( cFWConnectSpec[or]cYourConnectionString, [lShowError],[@oError]) ...
by nageswaragunupudi
Wed Jun 07, 2023 11:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3802

Re: Fivewin and ADO

hi, i want to use PostgreSQL with ADO (Xbase++ v2.x use PostgreSQL) these ConnectionString are from ADORDD STATIC FUNCTION ADOOPENCONNECT( cDB, cServer, cPort, cEngine, cUser, cPass, oCn )LOCAL oCatalog   oCn:ConnectionTimeOut := 60                   ...
by Jimmy
Wed Jun 07, 2023 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3802

Re: Soap Web Service

... name="Process_Sql"> <s:complexType> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="ConnectionString" type="s:string" /> <s:element minOccurs="0" maxOccurs="1" name="sql" type="s:string" ...
by byron.hopp
Wed Jan 26, 2022 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service
Replies: 7
Views: 906

Re: Quiero comenzar con sqlite

... ELSE ? 'CONEXION OK' ENDIF FUNCTION CONECTA(cCADENA) TRY oApp:= TOleAuto():new("adodb.connection") CATCH oERRX RETURN(.F.) END oApp:ConnectionString:= cCADENA TRY oApp:Open() CATCH oERRX RETURN(.F.) END RETURN(.T.)
by Marco Augusto
Wed Jul 29, 2020 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Quiero comenzar con sqlite
Replies: 34
Views: 4773

Re: Ayuda con Mysql

... * "UID="+cUseBas+";PASSWORD="+cPasUse+"; OPTION=3" oCon := TOleAuto():new("ADODB.Connection") oCon:ConnectionString := cDriSql TRY oCon:Open() lConnect := .t. CATCH oError showError( oError ) END return lConnect
by jpcavagnaro
Wed Jul 08, 2020 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda con Mysql
Replies: 11
Views: 1953

SQLLITE tema de fecha RESUELTO

... DATETIME, este me muestra en blanco, y su VALTYPE es "U" abro a db con: oConL := TOleAuto():new( "adodb.connection" ) oConL:ConnectionString := "Data Source=xharbour;Version=3;New=True;Compress=True;" TRY oConL:Open() CATCH MsgStop( "No Hay Conexion ODBC - ...
by Willi Quintana
Wed Nov 29, 2017 4:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SQLLITE tema de fecha RESUELTO
Replies: 1
Views: 742

Re: connect to SQL Server 2008

hi Mr Rao this is my code: function Main()   local cServer     := "MYSERVER\MSSQLSERVER08"   local cUser       := "sa"   local cPassword   := "pass"   local cDatabase   := "DATABASE"   local cTable      := "TABLE"   local oCn, oRs   oCn   := ...
by damianodec
Mon Jul 10, 2017 7:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: connect to SQL Server 2008
Replies: 9
Views: 1555

Re: ADO SQL slow after idle for a while

>>>
otmp:open(SQLCommando,ADO_SQL_Connectionstring)

>>>
If you want speed, do not use connection strings, use connection object which is already open.
by nageswaragunupudi
Fri Nov 04, 2016 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO SQL slow after idle for a while
Replies: 5
Views: 1173

Re: Using ODBC to connect to DBF via Internet

James,

I never used it, but there is a connectionstring for a DBF

https://www.connectionstrings.com/dbf-foxpro/
by Marc Vanzegbroeck
Thu Aug 18, 2016 9:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using ODBC to connect to DBF via Internet
Replies: 16
Views: 3600

Re: FW_OpenAdoConnection() question

I found the problem. I use a connectionstring "{MySQL ODBC 5.2w Driver}". This not included in the saProviders-array in addofuncs.prg now I use oCn   := FW_OpenAdoConnection(  "Driver={MySQL ODBC 5.2w Driver};Server=localhost;Port=3306;Database=MyDatabase;User=root;Password=MyPassword;Option=3;", ...
by Marc Vanzegbroeck
Tue Jul 05, 2016 8:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenAdoConnection() question
Replies: 2
Views: 673

Re: MS-SQL y Fivewin

otro ejemplo

oApp:ConnectionString := "Driver={SQL Server};Server=192.168.1.100;" + ;
"Trusted_Connection=no;Database=polizas" + ;
";Uid=contab;Pwd=Polizas123;"
by Marco Augusto
Wed Mar 16, 2016 5:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MS-SQL y Fivewin
Replies: 9
Views: 2630

Re: Bluehost MySQL Server through Fivewin

Dear Antonio, Can you show us how the connectionstring should look like. These are my parameters I use in HeidiSQL which work fine. LOCAL cHost := "box894.bluehost.com" LOCAL cUser := "axxxxnge" LOCAL cPsw := "14Adxxxx1" ...
by Otto
Tue Jan 26, 2016 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bluehost MySQL Server through Fivewin
Replies: 9
Views: 2375
Next

Return to advanced search