Search found 80 matches: dsn

Return to advanced search

Re: FiveODBC Error Message

... aDsn := OdbcDsnEntries() cName := "" cPass := "" cFile := "" if len(aDsn) == 0 MsgAlert("You must create a ODBC DSN configuration from your control panel",; "ODBC DSN selection") return nil endif cDsn := aDsn[1] DEFINE DIALOG oDlg RESOURCE "ODBCLOGIN" ...
by Compuin
Mon Dec 26, 2016 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveODBC Error Message
Replies: 27
Views: 4317

Cargar valores de un DSN en un arreglo

Hola,

Como puedo cargar los valores de un DSN en una arregle, para luego asignarlos a una variable algo asi como esto:

xDSN := CARGADSN()

en la funcion deberia hacerse el arreglo

Atento a sus comentarios
by Compuin
Sat Apr 23, 2016 10:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cargar valores de un DSN en un arreglo
Replies: 0
Views: 296

Re: Ejemplo ADORDD solo SQL

... AHF, el compañero Baxajaun me envio un link a MariaDB: Esto es lo que dice FROM MariaDB Connection parameters When configuring a DSN you can use the following keywords: DSN: Name of the DSN Driver: The name of the MariaDB ODBC Driver. Must be always {MariaDB ODBC 1.0 Driver} Server: ...
by D.Fernandez
Tue Nov 24, 2015 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo ADORDD solo SQL
Replies: 10
Views: 1710

Re: ADO RDD xHarbour

... to traditional DBF files. I have in Odbc UserDsn a VisualFoxpro driver. The properties are: "Microsoft FoxPro VFP Driver (*.dbf)" "DSN=DBF trial" "SourceDB="+folder with dbfs "Description=ODBC for ADO" "SourceType=DBF" "BackgroundFetch=Yes" ...
by AHF
Sat Feb 28, 2015 11:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449643

Re: Fivewin/xharbour with ActiveX Data Objects (ado) and MySQL

... How do I open the ODBC Data Source Administrator? What is the User DSN tab for? after created the DSN you can use it in fivedbu connection string you should use same driver name like in ODBC Data Source Administrator ...
by Daniel Garcia-Gil
Mon Feb 02, 2015 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin/xharbour with ActiveX Data Objects (ado) and MySQL
Replies: 19
Views: 6644

Re: Conexion a POSTGRESQL via ADO

sip, puedes usar algo similar, o incluso si es la misma base de datos y mismo servidor puedes usar el mismo DSN.

Code: Select all  Expand view
FW_AdoConnectionString( "DSN=myDsn;Uid=myUsername;Pwd=myPassword;")


salu2
by carlos vargas
Thu Jan 29, 2015 8:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Conexion a POSTGRESQL via ADO - SOLUCIONADO
Replies: 18
Views: 3706

Re: Conexion a POSTGRESQL via ADO

Me acabe de dar cuenta que por POWER BUILDER se conectan atravez de una conexion DSN del Sistema...

Como me puedo conectar de esa manera? Alguien tiene algun ejemplo?


Image


Saludos
by leandro
Thu Jan 29, 2015 8:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Conexion a POSTGRESQL via ADO - SOLUCIONADO
Replies: 18
Views: 3706

Re: CONEXION A MYSQL

... MYSQL, SQLSERVER) la desventaja de ADO es que tienes que instalar en los PC de los clientes los conectores porpios de cada motor y construir el DSN para la conexion, esta desventaja de ADO es la ventaja de MySql (TDolphin) que solo disrtribuyes el EXE con las DLL de mysql, la desventaja de TDolphin ...
by Daniel Garcia-Gil
Wed Oct 02, 2013 7:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION A MYSQL
Replies: 15
Views: 3958

CONEXION A MYSQL

... el "MySQL ODBC 3.51 Driver" que he bajado de su pagina, uso W7, lo instalé en Herramientas Administrativas, Origenes de Datos ODBC, DSN del Sistema y en Data Source Name puse BDPRUEBA, hice el test y se conecto!!!!! Pero al momento de hace la conexion desde mi App no hace nada, con ...
by LuisPonce
Tue Oct 01, 2013 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONEXION A MYSQL
Replies: 15
Views: 3958

Re: Nuevo FiveDBU usando el API de cadenas y el nuevo preview

Elvira, Puedes usar un datasource previamente definido desde el panel de control ó especificar una cadena de conexión como esta: DSN=MS Access Database;DBQ=test.mdb;DefaultDir=C:\;DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin; La caja de diálogo estandard de Windows ...
by Antonio Linares
Sat Aug 24, 2013 5:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FiveDBU usando el API de cadenas y el nuevo preview
Replies: 15
Views: 3446

Re: Off Beat Question - Javascript - SQL

... ) } catch(e) { alert("ADODB namespace not found."); exit(0); } try { var connectionstring="DSN=Pasha;User ID=sa;Password=Alex1209$; connection.Open(connectionstring); } catch(e) { alert(e.message); exit(0); } var rs = new ActiveXObject("ADODB.Recordset"); ...
by cdmmaui
Tue Jun 04, 2013 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Off Beat Question - Javascript - SQL
Replies: 17
Views: 3515

Re: Off Beat Question - Javascript - SQL

Hi Antonio,

The System DSN work fine and test works fine. However, when I try to access using the following connection string nothing happens, no popup, no data retrieval...

var connectionstring="DSN=Pasha;User ID=XXXXX;Password=XXXXX;
by cdmmaui
Fri May 24, 2013 6:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Off Beat Question - Javascript - SQL
Replies: 17
Views: 3515

Re: FiveDBU with ADO support

... installed what you sent me. From the "control panel", "Administrative tools", "ODBC datasources" click on "User DSN at the top", then click on "Add", there you will see all your installed drivers and you can select yours :-) Antonio, This is the ...
by Marc Vanzegbroeck
Thu May 09, 2013 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveDBU with ADO support
Replies: 51
Views: 9097

Re: FiveDBU with ADO support

Marc,

I only installed what you sent me.

From the "control panel", "Administrative tools", "ODBC datasources" click on "User DSN at the top", then click on "Add", there you will see all your installed drivers and you can select yours :-)
by Antonio Linares
Wed May 08, 2013 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveDBU with ADO support
Replies: 51
Views: 9097

Re: Sending e-mail with CDO and SSL

... Hello [68.7.204.149] [0:00:00.000] 250-TURN [0:00:00.000] 250-SIZE 41943040 [0:00:00.000] 250-ETRN [0:00:00.000] 250-PIPELINING [0:00:00.000] 250-DSN [0:00:00.000] 250-ENHANCEDSTATUSCODES [0:00:00.000] 250-8bitmime [0:00:00.000] 250-BINARYMIME [0:00:00.000] 250-CHUNKING [0:00:00.000] 250-VRFY ...
by James Bott
Thu Apr 04, 2013 8:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending e-mail with CDO and SSL
Replies: 24
Views: 9684
PreviousNext

Return to advanced search