Search found 42 matches: tdolphinqry

Return to advanced search

Re: Cambiar columna de consulta TDolphin

... from: => EVAL( 0 ) Called from: .\source\prg\tdolpsrv.prg => TDOLPHINSRV:CHECKERROR( 836 ) Called from: .\source\prg\tdolpqry.prg => (b)TDOLPHINQRY:TDOLPHINQRY( 133 ) Called from: => TDOLPHINQRY:CHECKERROR( 0 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:SAVE( 1480 ) ...
by JoseAlvarez
Thu Apr 14, 2022 6:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar columna de consulta TDolphin
Replies: 7
Views: 579

no puedo actualizar datos una tabla con TDolphin RESUELTO!

oQry := TDolphinQry():New( "SELECT * FROM materiales order by serialpc", oServer ) if oQry:Seek( rNueva0,"serialpc" )== 0 ? "no hay nada de nada" else ? "si esta el registro" oQry:dias=Str(cTequedan) ...
by AIDA
Sun Jul 19, 2020 6:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: no puedo actualizar datos una tabla con TDolphin RESUELTO!
Replies: 2
Views: 373

Re: Error al grabar con tDolphin

... 793 ) Called from: .\source\prg\tdolpsrv.prg => TDOLPHINSRV:SQLQUERY( 2024 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:SAVE( 1456 ) Called from: c:\disco-d\programs\ventasql\prgh\Remitos.prg => GRABALINEA( 411 ) Called from: c:\disco-d\programs\ventasql\prgh\Remitos.prg ...
by caducca
Fri Aug 16, 2019 3:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al grabar con tDolphin (Solucionado)
Replies: 6
Views: 875

Re: Error TDolphin

... 793 ) Called from: .\source\prg\tdolpsrv.prg => TDOLPHINSRV:SQLQUERY( 2039 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:SAVE( 1456 ) Called from: D:\Programs\ESTUDI~1\PRG\deudor.prg => EDITDEU( 333 ) Called from: D:\Programs\ESTUDI~1\PRG\deudor.prg => ...
by caducca
Thu Oct 26, 2017 12:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error TDolphin
Replies: 7
Views: 1915

Re: PROBLEMA CUANDO USO ORDE BY campo DESC CON XBROWSE

... subido los cambios al repositorio. Lo que pasaba es que no se generaba bien el array aColumns, prueba de cambiar el metodo BuildDatas de la clase tDolphinQry METHOD BuildDatas( cQuery ) CLASS TDolphinQry   LOCAL aToken, cItem, cSelect, cTables, cFind,nPos   LOCAL aCommands ...
by Biel EA6DD
Thu Aug 03, 2017 6:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: PROBLEMA CUANDO USO ORDE BY campo DESC CON XBROWSE
Replies: 9
Views: 2131

Re: FWH: MySql/MariaDB: RowSet object

... *********************************************************** METHOD SetNewFilter( nType, cFilter, lRefresh ) CLASS TDolphinQry ************************************************************ LOCAL cOldFilter LOCAL l := .T. DEFAULT lRefresh TO .T. SWITCH nType CASE SET_WHERE ...
by luiz53
Tue May 16, 2017 1:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19554

Re: FWH: MySql/MariaDB: RowSet object

HOW TO MAKE ? IN TDOLPHIN oQry := TDolphinQry():New("select * from country ", oServer ) oQry:setWhere("name like '%REPLUBLICA%'",.T.) // QUERY RESULT -> select * from country where name like '%REPLUBLICA% to clean oQry:setWhere("",.T.) ...
by luiz53
Fri May 12, 2017 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19554

Re: Versão atual TDOLPHIN - Campo Null

... veja: https://bitbucket.org/danielgarciagil/tdolphin/downloads please, replace in tdolqry.prg, recompile and test. METHOD GetRow( nRow ) CLASS TDolphinQry LOCAL cType, uValue, cField LOCAL cCol LOCAL nIdx LOCAL aRow LOCAL hRow, uItem, aStructure, nPad DEFAULT nRow TO ::nRecNo IF ::hResult <> ...
by MGA
Wed Oct 19, 2016 6:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Versão atual TDOLPHIN - Campo Null
Replies: 6
Views: 1969

Re: EXTENDED class (SOLUCIONADO)

Gracias!

Lo que estaba haciendo gracias a Carlos que me guio desde el principio me funcionó ,
lo que estaba mal era que yo ponia TDOLPHINQRY y debia ser TDOLPHINSRV gracias
a ambos!

Solucionado.
by goosfancito
Mon Sep 05, 2016 9:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: EXTENDED class
Replies: 3
Views: 552

For Each use...

... as many as 15000 rows, I have to transform it to an array to do some operations on the data. Rigth now I'm doing this. Local xArr:={} Local xDb:=tDolphinQry():New("select f1, f2, f3 from xTable", oSvr) Local x:=0 For x=1 to xDb:nRecCount xDb:getRow() Aadd(xArr,{f1,f2,f3,1,.F.}) xDb:Skip() ...
by Adolfo
Mon Aug 08, 2016 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: For Each use...
Replies: 5
Views: 752

Uso de For Each

... 15.000 filas, y debo si o si pasarlos a una array por diversos manejos y calculos que hago con ellos. Ahora hago esto. Local xArr:={} Local xDb:=tDolphinQry():New("select f1, f2, f3 from xTable", oSvr) Local x:=0 For x=1 to xDb:nRecCount xDb:getRow() Aadd(xArr,{f1,f2,f3,1,.F.}) xDb:Skip() ...
by Adolfo
Mon Aug 08, 2016 3:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de For Each
Replies: 6
Views: 1147

TDolphin + XBrowse drag column

... Called from: => ALLTRIM( 0 ) Called from: .\source\prg\tdolpsrv.prg => CLIPVALUE2SQL( 1955 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:SEEK( 1376 ) Called from: T:\new\fivewin\xbrowse.prg => TXBRWCOLUMN:SETORDER( 11902 ) Called from: T:\new\fivewin\xbrowse.prg => TXBRWCOLUMN:HEADERLBUTTONUP( ...
by Francisco Valério
Tue Aug 02, 2016 3:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin + XBrowse drag column
Replies: 0
Views: 548

Re: Tdolphin Subselects

... 838 ) Called from: .\source\prg\tdolpsrv.prg => TDOLPHINSRV:SQLQUERY( 2099 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:LOADQUERY( 1230 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:NEW( 310 ) Called from: .\source\prg\tdolpsrv.prg => TDOLPHINSRV:QUERY( ...
by CARLOS ATUNCAR
Tue Mar 08, 2016 8:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tdolphin Subselects
Replies: 3
Views: 1205

TDOLPHIN + UPDATE + SELECT

... 'update slbdactg set contador = contador + 1 WHERE campo = `BCOAGECC` ;’ cQry += 'select contador from slbdactg WHERE campo = `BCOAGECC` ' oQry := TDolphinQry:New(cQry,::nServer) Error description: Error MYSQL/1064 You have an error in your SQL syntax; check the manual that corresponds to your ...
by luiz53
Fri Oct 23, 2015 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDOLPHIN + UPDATE + SELECT
Replies: 1
Views: 414

Re: Daniel.. error en ::refresh()

... 2291 ) Called from: .\source\prg\tdolpsrv.prg => TDOLPHINSRV:CHECKERROR( 671 ) Called from: .\source\prg\tdolpqry.prg => (b)TDOLPHINQRY:TDOLPHINQRY( 130 ) Called from: => TDOLPHINQRY:CHECKERROR( 0 ) Called from: .\source\prg\tdolpqry.prg => TDOLPHINQRY:GETROW( 954 ) ...
by Willi Quintana
Thu Sep 18, 2014 8:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Daniel.. error en ::refresh()
Replies: 14
Views: 2169
Next

Return to advanced search