Search found 122 matches: odata

Return to advanced search

Re: Actualizar datos en MySql con TDolphin

oDATA:=oServer:Query( "SELECT * FROM DATPER ORDER BY CODIGO FOR UPDATE")oData:oServer:BeginTransaction() ///<----  Do While !oDATA:Eof()      Vacacion() //Obtengo los valores  ...
by Biel EA6DD
Thu Sep 18, 2014 6:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar datos en MySql con TDolphin
Replies: 7
Views: 923

Re: tData for SQL

I love ADS. I can use SQL interface/client and straight DBF access on the same data at the same time. They even have an oData client for use with mobile connectivity.
by Gale FORd
Tue Jul 08, 2014 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tData for SQL
Replies: 24
Views: 6295

Re: Which event to display latest value of cSeek IN XBROWSE ?

REDEFINE XBROWSE oData ID 120 OF oDlg3 AUTOSORT

You should also add here "DATASOURCE <yourdatasource> COLUMNS <fieldnames>"
by nageswaragunupudi
Wed May 14, 2014 1:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Which event to display latest value of cSeek IN XBROWSE ?
Replies: 15
Views: 3932

Re: Which event to display latest value of cSeek IN XBROWSE ?

I added seek to my project-browser and used REDEFINE XBROWSE oData ID 120 OF oDlg3 AUTOSORT and REDEFINE SAY oData:oSeek PROMPT oData:cSeek ID 145 OF oDlg3 FONT oFont1 oData:oSeek:Setcolor( 255, 16772313 ) for the xBrowse. Seek is working, but only with ...
by ukoenig
Tue May 13, 2014 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Which event to display latest value of cSeek IN XBROWSE ?
Replies: 15
Views: 3932

Re: Preprocessor advice needed? (SOLVED)

Hakan,

Yes, you are right, the problem is that <oData> exists so the entire clause is NOT optional.

In such case, yes, the above posted working solution is the right one :-)
by Antonio Linares
Sat May 03, 2014 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preprocessor advice needed? (SOLVED)
Replies: 8
Views: 1112

Re: Preprocessor advice needed? (SOLVED)

Hakan, Yes, I missed the first line, sorry You can make it entirely optional too: [ <oData>:= <oPtype>:Clone() ;] ; Hi Antonio I tried your suggested solution and It does not work. ppo result is below. ooTb_Temp:=:Clone(); ooTb_Temp:D_AC(,, ...
by Horizon
Sat May 03, 2014 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preprocessor advice needed? (SOLVED)
Replies: 8
Views: 1112

Re: Preprocessor advice needed? (SOLVED)

Hakan,

Yes, I missed the first line, sorry

You can make it entirely optional too:

[ <oData>:= <oPtype>:Clone() ;] ;
by Antonio Linares
Fri May 02, 2014 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preprocessor advice needed? (SOLVED)
Replies: 8
Views: 1112

Re: xBrowse c/TDolphin

Espero que te ajude: oQry := oServer:Query( "SELECT * FROM clientes ORDER BY nome" ) oData := oQry REDEFINE XBROWSE oBrw OBJECT oData ID 4000 OF oDlg lines AUTOCOLS AUTOSORT obrw:lAutoSort := .t. with object oBrw:oCol(1) :cHeader := 'Código' :cEditPicture := ...
by MGA
Sat Nov 02, 2013 12:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse c/TDolphin
Replies: 4
Views: 780

Re: clear IMAGE

Mr Lucas Let me try to make it simple for you. #1. If you want to change the image with a new image file : ACTION ( oData:foto := <newfilename>, oImage:LoadBmp( oData:foto ) ) #2. If you want to clear image ACTION ( oData:foto := "", ClearImage( oImage ) ) I shall ...
by nageswaragunupudi
Thu Jul 18, 2013 6:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clear IMAGE
Replies: 6
Views: 1160

clear IMAGE

...                                       FILENAME oData:FOTO  ;                                      ...
by lucasdebeltran
Thu Jul 18, 2013 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: clear IMAGE
Replies: 6
Views: 1160

Re: SQL Server as a web service

As already mentioned, you can use OData ... http://scn.sap.com/community/developer-center/mobility-platform/blog/2013/06/12/odata-support-in-sql-anywhere-16 OData is quickly becoming the Lingua Franca for data exchange over the web. The OData ...
by modicr
Fri Jun 14, 2013 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL Server as a web service
Replies: 2
Views: 1161

Re: SQL Server as a web service

... either with the native client for each of these languages or simply use web-service calls. They have implemented the xml structure with the oData standards. SAP will provide you with a free 2 user server version good for development. There is a also a free training "Summit" every ...
by reinaldocrespo
Thu Jun 13, 2013 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL Server as a web service
Replies: 2
Views: 1161

Re: TDataRow and ADO questions

... TDataRow class for adhoc data. aData := { ; { "Name", Space( 30 ) }, ; { "Age", 0 }, ; { "City", Space( 20 ) } } oData := TDataRow():New( aData ) oData:Edit() and we have the modified data in aData now.
by nageswaragunupudi
Thu Jun 06, 2013 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDataRow and ADO questions
Replies: 48
Views: 11725

Re: Clase TDb o TDatabase....cual usar?

... ::SetBookMark() RETURN TObjDb():New( Self, .F. ) //----------------------------------------------------------------------------// METHOD SaveObj( oData ) CLASS TDb ::GetBookMark() ::aBuffer := AClone( oData:aBuffer ) IF oData:lNuevo ::Append() ENDIF ::Save() RETURN NIL //----------------------------------------------------------------------------// ...
by Compuin
Thu Feb 28, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TDb o TDatabase....cual usar?
Replies: 10
Views: 2880

Re: Como cambiar un say

Hice lo siguiente y funciona [code local oSay etc etc REDEFINE CHECKBOX oChex[7] VAR oData:lexporta id 500 of oFold:adialogs[1] update; ON CHANGE (iif( oData:lexporta ,oSay:settext("País"),oSay:settext("Localidad")),oSay:refresh()) REDEFINE Say ...
by surGom
Thu Jan 17, 2013 11:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como cambiar un say
Replies: 3
Views: 673
PreviousNext

Return to advanced search