Search found 4 matches: joins

Searched query: joins

by Armando
Fri Sep 20, 2024 8:17 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Relecionar RecordSet
Replies: 5
Views: 583

Re: Relecionar RecordSet

Servicomver:

A ver si este código te da más luz, puedes tener tanos JOINs como necesites


oRsCxp := FW_OpenRecordSet(oApp:oCon,"SELECT " +;
"*," +;
"PRO_NOM," +;
"PRO_DES " +;
"FROM " +;
"CarCxp " +;
"LEFT JOIN " +;
"Proveedores " +;
"ON " +;
"CAR_PRV = Proveedores.PRO_NUM " +;
"LEFT ...
by Armando
Fri Sep 06, 2024 7:12 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Controlar Error ADODB.RecordSet:FIELDS/9 - Solucionado
Replies: 7
Views: 1421

Re: Controlar Error ADODB.RecordSet:FIELDS/9

Estimado Leandro:

Si en el SELECT tienes JOINs revisa que los campos del JOIN existan y tengan valor

Saludos
by Maurizio
Thu Jul 18, 2024 6:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Dbf/cdx to sql changing
Replies: 53
Views: 5420

Re: Dbf/cdx to sql changing

... procedures and triggers that allow automation of many database operations.
Advanced Query Features: SQL offers advanced features such as complex joins, subqueries, CTEs (Common Table Expressions), and aggregation functions.
6. Compatibility
Interoperability: SQL databases are widely supported and ...
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: 1372

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) TYPE NAME MORE ...