Search found 27 matches: joins

Return to advanced search

C language #define # and ## operators use

This is supported by C compilers, but I guess it is a quite unknown feature: A single #name stringify the name A double ## joins two names function Main()   MsgInfo( Test() )return nil #pragma BEGINDUMP#include <hbapi.h>#include <stdio.h>#define MEMBER(TYPE,NAME,MORE) ...
by Antonio Linares
Tue Oct 24, 2023 7:20 am
 
Forum: Off Topic / Otros temas
Topic: C language #define # and ## operators use
Replies: 0
Views: 328

Re: Xbrowse que no se deja editar

... los campos con la abreviatura de la tabla, sucede que los campos que quedan editables son los de la tabla del select, pero todas las tablas de los joins, sus campos no se pueden editar. Si pongo el nombre de la tabla punto el nombre del campo entre comillas, el campo no se muestra pero permite ...
by jose_murugosa
Fri Dec 17, 2021 6:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse que no se deja editar
Replies: 7
Views: 562

Re: No funcionan los Ejemplos TWeb

... (sum, i) {         return sum + i        }, 0)  Other: how it joins to show: Total: 25 function firstFormatter() {            return 'Total:'  data.length    ...
by acuellar
Sat Aug 28, 2021 5:52 pm
 
Forum: mod_harbour
Topic: No funcionan los Ejemplos TWeb
Replies: 26
Views: 3542

Re: MariaDB RS Tree

Mr. Rao,

This is great approach.. I did it with JOINS too.. I thought of On-The-Fly oChild when parent root expanded.. But maybe not a good idea?

I always referenced your sample relative to xBrowse.. Absolutely very helpful. :wink:


:idea:
by fraxzi
Mon Aug 13, 2018 12:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB RS Tree
Replies: 5
Views: 1227

Re: MariaDB RS Tree

... rowsets. Open a single rowset with an sql statement joining all the tables. This is a simple example. In real situation, you can nest the joins to the desired level. function TestTree2()   local oCn   local cSql, oRs, oDlg, oFont, oBrw   oCn   ...
by nageswaragunupudi
Sun Aug 12, 2018 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB RS Tree
Replies: 5
Views: 1227

Re: error al borrar registro con xbrowse, tdophin, mysql

... is only one library, i.e., FWH MariaDB library that supports all operations Append, Modify and Delete of data in the main table of a query with joins also very smoothly. These operations work just like they work with a single table query. We can modify the joining field and we see a refreshed ...
by nageswaragunupudi
Tue Jul 17, 2018 3:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: error al borrar registro con xbrowse, tdophin, mysql
Replies: 8
Views: 1537

New FTDN January/Enero 2018 (FWH 18.01)

... positioned on the previous record with the same primary key. - Method ReSync() Fix: Resync() was failing on some rare cases, where table contained joins, fields with the same name exist in more than one table and the alias used for base table is the same as the name of the table. Now fixed. * Enhancement: ...
by Antonio Linares
Wed Feb 14, 2018 5:03 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2018 (FWH 18.01)
Replies: 1
Views: 2553

Re: Xbrowse with more that one oRs into it.

... do not need to do anything. Do I have to look for info in the FW docs, or in the SQL docs ? SQL docs. But you can find plenty of examples using JOINs in fwh\samples and also many postings on this forum
by nageswaragunupudi
Mon Nov 13, 2017 2:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse with more that one oRs into it.
Replies: 7
Views: 3325

Re: FWHMYSQL/MARIADB: Stored Procedures and Functions

... failed in achieving his objective. He thought he was smart but the RowSet object is smarter. This UI program knows all about the table, structure, joins, primary keys, unique keys and everything, which he did not want to reveal. So what should the DB programmer do? Continued ........
by nageswaragunupudi
Sun Dec 04, 2016 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL/MARIADB: Stored Procedures and Functions
Replies: 5
Views: 2890

Re: How to use JOIN command in MySql.LIB?

... well: http://www.w3schools.com/sql/sql_join.asp http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins Hope I am helping, Regards, Antonino Perricone
by AntoninoP
Tue Jun 23, 2015 7:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use JOIN command in MySql.LIB?*Understood/More Clear*
Replies: 7
Views: 1827

Re: ADO RDD xHarbour

... to manage SQL.. and creating separate recordsets based on the primary key and the foreign key or a single recordset based on inner and outer joins.. not necessarily like we used to with .Dbf. I am watching this thread with interest. Rick Lipkin Rick, Could you share code for creating separate ...
by AHF
Mon Apr 13, 2015 6:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446022

Re: ADO RDD xHarbour

... to manage SQL.. and creating separate recordsets based on the primary key and the foreign key or a single recordset based on inner and outer joins.. not necessarily like we used to with .Dbf. I am watching this thread with interest. Rick Lipkin
by Rick Lipkin
Fri Apr 10, 2015 4:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446022

Re: ADO RDD xHarbour

... have problems with the queries. Which problems ? IMHO Its seems what same field for all tables is a more clear solution. (hbrecno) Problem with joins. In a join you can't have field with same name from different tables so you have to use AS clause. EMG
by Enrico Maria Giordano
Thu Apr 09, 2015 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446022

Re: MYSQL - Normalización. Ayuda por favor.

Con respecto al tema los joins es lo que más aprovechamos del servidor, yo tengo tablas de mas de 1000000 de registros con consultas complejas y funciona extremadamente rapido, tener campos repetidos es util para los reportes.


Slds
by nnicanor
Fri May 16, 2014 1:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MYSQL - Normalización. Ayuda por favor.
Replies: 5
Views: 886
Next

Return to advanced search