Search found 29 matches: areadata

Return to advanced search

Re: Adoordd , xbrowse

Frank, Whats the adordd version ? Whats your DB ? Please confirm Fields not Fileds. The adordd mimics precisely the field types, lenghts, decimals as in dbf. This is not the case in ADO. Please read carefully the readme.pdf in github regarding numeric, decimals and logical fields. Deletes done thro...
by Franklin Demont
Thu Oct 27, 2016 3:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adoordd , xbrowse
Replies: 9
Views: 2325

Adoordd , xbrowse

Hello , I try to use Adordd with xbrowse and have problems : 1) Opening a table like : USE table VIA "ADORDD" ALIAS alias NEW oRs := USRRDD_AREADATA( Select() )[1] DBG oRs:CursorType , oRs:CursorLocation , oRs:LockType 3 3 3 In AdoRdd i can see oRecordSet:Open(......., , adOpenDynamic , .....
by Franklin Demont
Thu Oct 27, 2016 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adoordd , xbrowse
Replies: 9
Views: 2325

Re: ADO RDD xHarbour

I am trying to compile the ADORDD.PRG but I am getting the following "unresolved externals" (see below). I was using the standard buildx.bat program but then I found the functions in xHarbour\libs\rdds.lib and added this lib to the buildx.bat but the same unresolved externals are still sho...
by James Bott
Tue Jun 30, 2015 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446440

Re: ADO RDD xHarbour

Antonio, Dbcreate() should take the database from SET ADO DEFAULT DATABASE TO command, so only needs to indicate table name, as current dbcreate() from DBFCDX. So, I would plan dbcreate() as follows. To keep compatibility with DBFCDX, fist parameter should be table name. Also, if you want, you can ...
by AHF
Mon May 11, 2015 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446440

Re: ADO RDD xHarbour

Antonio, Dbcreate() should take the database from SET ADO DEFAULT DATABASE TO command, so only needs to indicate table name, as current dbcreate() from DBFCDX. So, I would plan dbcreate() as follows. To keep compatibility with DBFCDX, fist parameter should be table name. Also, if you want, you can i...
by lucasdebeltran
Sun May 10, 2015 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446440

Re: ADORDD para Antonio H.

Antonio lo que he puesto no lo entiendo muy bien... Para que sirve FUNCTION ADODB_CLOSE()... Si alguien la usa, y lo puede hacer porque no es una función staic se cargaría el control de la RDD ya que el array interno USRRDD_AREADATA no estaría actualizado y cualquier función DB...() funcionaría de ...
by AHF
Tue Apr 14, 2015 5:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADORDD para Antonio H.
Replies: 2
Views: 594

ADORDD para Antonio H.

Veo en ecódigo esto: FUNCTION ADODB_CLOSE() // oConnection STATIC VAR that mantains te adodb connection the same for all recordsets //this is to enable transactions in several recordsets because transactions is per connection //this it to be called within an exit proc of the application // o...
by xmanuel
Mon Apr 13, 2015 8:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADORDD para Antonio H.
Replies: 2
Views: 594

Re: ADO RDD xHarbour

Here it is [code]FOR n := 1 TO nTotalFields aField := Array( UR_FI_SIZE ) aField[ UR_FI_NAME ] := oRecordSet:Fields( n - 1 ):Name ADO_FIELDINFO( nWA, n, DBS_TYPE, @uInfo ) aField[ UR_FI_TYPE ] := uInfo aField[ UR_FI_TYPEEXT ] := 0 ADO_FIELDINFO( nWA, n, DBS_LEN, @uInfo ) aField[ UR_FI_LEN ] := uInfo...
by AHF
Tue Mar 10, 2015 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446440

Re: ADORDD

Gracias... disculpen mi ignorancia... mojoró, pero sigo con problemas: Error: Unresolved external '_hb_vmProcessSymbolsEx' referenced from C:\HARBOUR104\LIB\ADORDD.LIB|adordd Error: Unresolved external '_HB_FUN_USRRDD_RDDDATA' referenced from C:\HARBOUR104\LIB\ADORDD.LIB|adordd Error: Unresolved ext...
by diegopolverelli
Thu Nov 17, 2011 12:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADORDD
Replies: 13
Views: 4446

Re: XBrowse + ADO

It seems that the ADO_CLEARFILTER() function is called from somewhere because when I modify it from STATIC FUNCTION ADO_CLEARFILTER( nWA ) LOCAL oRecordSet := USRRDD_AREADATA( nWA )[ WA_RECORDSET ] BEGIN SEQUENCE WITH {| oErr | Break( oErr ) } //oRecordSet:Filter := "" RECOVER END SEQUENCE...
by ADutheil
Fri Feb 18, 2011 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse + ADO
Replies: 7
Views: 1709

Re: Nuevo AdoRDD (libre)

Hola Antonio. Despues de un rastreo al error reportado, fue solucionado adicionando asi: static function ADO_CREATEFIELDS( nWA, aStruct ) local aWAData := USRRDD_AREADATA( nWA ) local n aWAData[ WA_SQLSTRUCT ] := "" for n := 1 to Len( aStruct ) if n > 1 aWAData[ WA_SQLSTRUCT ] += "...
by devtuxtla
Fri Sep 17, 2010 2:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo AdoRDD (libre)
Replies: 260
Views: 132669

Re: Beginners Error With ADO (Harbour)

Ok, maybe not "perfectly". :) I can now open and browse the database I'm after, but when I hit the last record by scrolling down the browse or with a simple skip command, I get the following error: Error description: Error ADODB.Recordset/6 DISP_E_UNKNOWNNAME: STATUS Args: Stack Calls ====...
by MichaelMo
Sat Dec 26, 2009 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Beginners Error With ADO (Harbour)
Replies: 6
Views: 1221

Re: SQLWIN - RDD libre para SQL

d:\bcc55\BIN\ilink32 @makefile.lnk Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland Error: Unresolved external '_HB_FUN_USRRDD_RDDDATA' referenced from C:\SQLWIN\OBJ\SQLWIN.OBJ Error: Unresolved external '_HB_FUN_USRRDD_AREADATA' referenced from C:\SQLWIN\OBJ\SQLWIN.OBJ Error: Unresolved...
by lailton.webmaster
Tue Jun 02, 2009 3:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SQLWIN - RDD libre para SQL
Replies: 95
Views: 44181

Unresolved external '_HB_FUN_USRRDD_RDDDATA' Unresolved external '_HB_FUN_USRRDD_AREADATA' Unresolved external '_HB_FUN_UR_SUPER_ERROR' Unresolved external '_HB_FUN_UR_SUPER_SETFIELDEXTENT' Unresolved external '_HB_FUN_UR_SUPER_ADDFIELD' Unresolved external '_HB_FUN_UR_SUPER_OPEN' Unresolved extern...
by mmercado
Mon Sep 15, 2008 4:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SQLWIN - RDD libre para SQL
Replies: 95
Views: 44181

Probando y obtengo estos errores Unresolved external '_HB_FUN_USRRDD_RDDDATA' Unresolved external '_HB_FUN_USRRDD_AREADATA' Unresolved external '_HB_FUN_UR_SUPER_ERROR' Unresolved external '_HB_FUN_UR_SUPER_SETFIELDEXTENT' Unresolved external '_HB_FUN_UR_SUPER_ADDFIELD' Unresolved external '_HB_FUN_...
by Francisco Horta
Mon Sep 15, 2008 3:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SQLWIN - RDD libre para SQL
Replies: 95
Views: 44181
Next

Return to advanced search