Search found 14 matches: adsconnect

Return to advanced search

Con la duda aun, Harbour 3.0.0 ó 3.2.0?

... Error: Unresolved external 'AdsIsTableEncrypted' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc Error: Unresolved external 'AdsConnect' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc Error: Unresolved external 'AdsStmtSetTableLockType' referenced from I:\HARBOUR\LIB\RDDADS.LIB|adsfunc ...
by noe aburto
Tue Aug 25, 2020 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Con la duda aun, Harbour 3.0.0 ó 3.2.0?
Replies: 2
Views: 726

Re: Disable Advantage error message dialogs

Hi. If there is an internal error on AdsConnect, you have a popup message made from the ADS client with the error number and the description. And you must click on the OK button to close it. So the program execution is stopped until you close ...
by Massimo Linossi
Fri Dec 15, 2017 7:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable Advantage error message dialogs
Replies: 12
Views: 1461

Re: No puedo crear tablas ( DbCreate )

ADSConnect // ADS
Se puede tener 2 conecciones ?
y como abro las tablas ?
by VitalJavier
Wed May 24, 2017 6:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No puedo crear tablas ( DbCreate )
Replies: 3
Views: 564

Re: O.T. - ADSSQL

... Tengo un arch. DBF con un campo logico que es puesto en falso al iniciar la aplicacion. Lo hago de la siguiente manera: DBSelectArea( 0 ) AdsConnect(  h0:oRut:oMG:hIni["CAMINOS"]["bdatos"], ADS_LOCAL_SERVER )
by MarioG
Mon Nov 19, 2012 7:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: O.T. - ADSSQL
Replies: 7
Views: 1563

Re: Sobre el Diccionario de Datos

Con ADSConnect(cPathTEM) , solamente así pude abrir tablas libres del DD
y después cerrar la coneccion AdsDisconnect().
by JavierVital
Mon Apr 09, 2012 3:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Sobre el Diccionario de Datos
Replies: 5
Views: 1034

Erro RDDADS

... Error: Unresolved external 'AdsIsTableEncrypted' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc Error: Unresolved external 'AdsConnect' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc Error: Unresolved external 'AdsStmtSetTableLockType' referenced from C:\FIVETECH\XHARBOUR\LIB\RDDADS.LIB|adsfunc ...
by jufer
Sun Dec 20, 2009 3:31 pm
 
Forum: All products support
Topic: Erro RDDADS
Replies: 3
Views: 2498

ADS - FWH_812 Y xHAR ( LOCAL REMOTO)

Antonio, hasta ahora nuestras aplicaciones usaban el RDD de ADS para trabajar las DBF, creabamos una ADSCONNECT al server poniamos SET REMOTE SERVER abriamos las bases , ademas usabamos SET SERVER LOCAL para abrir las bases que la terminal usa localmente y funcionanba bien ...
by GUSPRE
Thu Jan 08, 2009 3:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADS - FWH_812 Y xHAR ( LOCAL REMOTO)
Replies: 7
Views: 1187

Advantage DS

... Did somebody use Advantage Local Server with Fivewin/Clipper? There are ACE functions ADSSetServerType and ADSConnect, but how to use these ACE functions under Fivewin? can not be used with 16bit clipper/fivewin applications. But can be used with 32bit Harbour ...
by Antonio Linares
Wed Aug 27, 2008 7:30 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65074

... data is totally hidden from all users. There is no better security than this. BTW, you can connect to your data also using ip:port/path_to_add in adsconnect(). like this: xrddpath := "\\192.168.1.1:2000\data\dd.add" AdsConnect60( xrddpath + cDict, ADS_REMOTE_SERVER, "user", "pass" ) What I usually ...
by reinaldocrespo
Fri Jul 04, 2008 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS server side alias
Replies: 4
Views: 2156

Asignacion de alias para SQL sobre ADS

... consultas SQL y para ello primero toca crearles una conexion previa..por ejemplo yo usaria estas instrucciones: 1. RUTABUS:="D:\mistablas\" 2. s:=ADSCONNECT(RUTABUS) 3: h:=ADSCREATESQLSTATEMENT("sqlalias",3) 4. ADSEXECUTESQLDIRECT(cSQL) ... sqlalias->(DBCLOSEAREA()) ADSDISCONNECT(ADSGETCONNECTIONHANDLE()) ...
by BenD
Thu Jan 31, 2008 1:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Asignacion de alias para SQL sobre ADS
Replies: 1
Views: 825

ayuda error con AIS

... Error description: Error adodb.connection/9 Error 6421: The IP address for the given server was invalid or not found in ADS.INI. axServerConnect AdsConnect: OPEN Args: [ 1] = C Provider=Advantage.OLEDB.1;User ID=adssys;Data Source=\\miserver\app\SIV\bases\dictionary.add;Persist Security Info=False;ServerType=ADS_AIS_SERVER;LockMode=ADS_COMPATIBLE_LOCKING ...
by alex_cyr
Fri Nov 10, 2006 12:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda error con AIS
Replies: 1
Views: 697

Mas pistas, si utilizo SQL, y creo primero una tabla temporal la cosa va mucho mas rapido, esto es un ejemplo AdsConnect( ".\data\" ,1) adsRightsCheck( .F. ) Select 100 ADSCreateSQLStatement("SQLarea",3) AdsExecuteSqlDirect( " select * into #temo from dbf " ) sqlarea -> ( DBCLOSEAREA() ...
by Marcelo Via Giglio
Fri Feb 10, 2006 7:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: O.T. velocidad de ADS LOCAL con archivos ADT
Replies: 4
Views: 1624

James; adsconnect60 is in adsfunc.c. Do notice the order of parameters, and it returns true or false and not a connection handle anywhere. The connection handle is stored on a static variable available internally to any future ...
by reinaldocrespo
Fri Jan 06, 2006 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with ADS
Replies: 9
Views: 3155

... cierro el area, no necesito mucha complejidad, que problema me traeria eso ? No uso ni diccionarios ni nada, algo bien simple me conformo :wink: AdsConnect ADSCreateSQLStatement("SQLarea",2) ADSExecuteSQLDirect( <cConsulta> ) y despues cierro el area SQLarea AdsDisconnect A proposito, donde ...
by Hernan Diego Ceccarelli
Wed Oct 26, 2005 5:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consultas SQL con ADS "LOCAL" DUDA
Replies: 4
Views: 2276

Return to advanced search