Search found 67 matches: schema

Return to advanced search

Re: SWAGGER-UI para documentar nuestras API.

Dear Marc Mailchimp exposes Marketing API (and others) in OAS format at https://api.mailchimp.com/schema/3.0/Swagger.json This format can be read with Postman https://www.postman.com/ You can import from File -> Import -> Link -> https://api.mailchimp.com/schema/3.0/Swagger.json ...
by Joaquim Ferrer
Wed Mar 06, 2024 6:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1977

Re: Cuantas columnas tiene una tabla?

Hola con el nativo de Fivewin creo que es: oRs:Fields:Count Da lo mismo que uses MariaDb que MySql También googleando aseguran que está consulta devuelve el número de campos de una tabla Mysql. OCn:execute("SELECT TABLE_NAME, count( COLUMN_NAME ) FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name...
by jvtecheto
Sat Sep 02, 2023 6:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cuantas columnas tiene una tabla? (SOLUCIONADO)
Replies: 6
Views: 444

Re: Mark field as required

... This is much more human than merely forcing the data into some arbitrary format whose correctness is judged mostly on its compliance to a file schema rather than to a human need. My first idea was to just color "required" fields pink. These fields then turn white after data is entered. ...
by James Bott
Tue Jul 25, 2023 1:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mark field as required
Replies: 23
Views: 1779

Re: build Import LIB from LibPQ.DLL

hi, i have read in PostgreSQL Manual and found "SHOW SERVER_ENCODING" "SHOW CLIENT_ENCODING" it does show me UTF8 or WIN1252, depend on Server, on both Side but i can change it to   cQuery := 'SET CLIENT_ENCODING TO "WIN1252"'   cENCODING := oPGU:QuickQuery( cQuery ...
by Jimmy
Thu Jul 20, 2023 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: build Import LIB from LibPQ.DLL
Replies: 37
Views: 2816

Re: Cómo saber si una DATABSE existe?

... que nada me aseguro de tener una base de datos de CONTROL que SÍ exista para poder conectar al servidor, esa base de datos debe estar en el mismo schema de la que voy a validar, ya que no se como conectar al servidor con TDolphin sin indicar un nombre de base de datos válido. Luego hago esto: ...
by JoseAlvarez
Sat Jun 17, 2023 12:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo saber si una DATABASE existe? (SOLUCIONADO)
Replies: 5
Views: 446

Re: edit a cell of a xbrowse

... and recalculate the line number (RecSelShowKeyNo)? How can I delete a line, I have tried with aDel but then it is not good when I import a new schema cData does not refresh the get columns / rows sample on New data function I load a file txt the procedure insert tha data into oBrw but then ...
by Silvio.Falconi
Thu Oct 20, 2022 9:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a cell of a xbrowse
Replies: 12
Views: 695

Re: Clase Nativa MySql

Pero un registro nuevo igualmente puede tener un código libre, eso lo permite MySql. Espero haber sido claro. English: But a new record can still have a free code, that is allowed by MySql. I hope I was clear. Yes. But this is a very unsafe practice for regular insertion of records. We can use this...
by nageswaragunupudi
Fri Mar 11, 2022 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase Nativa MySql
Replies: 18
Views: 1851

Re: Soap Web Service

WSDL file for Anitonio <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" ...
by byron.hopp
Wed Jan 26, 2022 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service
Replies: 7
Views: 906

Re: GetAutoIncrement en MARIADB?

Necesito conocer el ultimo indice (autoincrement) que se le dio a una tabla. Antes lo hacia con GetAutoIncrement y ahora con mariadb? gracias. Saludos, yo lo hago asi, inmediatamente luego del insert cQuery := "SELECT LAST_INSERT_ID() AS nIdItem FROM articulos;" otra forma cQuery := “SELE...
by JoseAlvarez
Fri Oct 01, 2021 2:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GetAutoIncrement en MARIADB?
Replies: 1
Views: 283

AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )

... este es el archivo xml <?xml version="1.0" encoding="UTF-8"?> <Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" ...
by CARLOS ATUNCAR
Sun Mar 14, 2021 3:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )
Replies: 6
Views: 1380

Re: Ayuda con XML - SOLUCIONADO

... sabe como debo hcerlo le agraecería me orientase. Este es el esquema que me pasa la administración para que lo incluya al comienzo del XML: <schema targetNamespace="urn:ticketbai:emision"> <import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd"/> ...
by landaga
Sat Feb 27, 2021 9:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: Ayuda con XML - SOLUCIONADO
Replies: 1
Views: 290

Re: Detectar si existe campo en tabla MySQL

cMsg :="SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE()AND COLUMN_NAME='actaconformidad_mod' AND TABLE_NAME='formularios' " cQry := oServer:Query( cMsg ) If cQry:lastrec()=0 cMsg := "ALTER TABLE formularios " cMsg += "ADD COLUMN actaconformidad_mod VAR...
by CARLOS ATUNCAR
Tue Jan 05, 2021 7:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar si existe campo en tabla MySQL
Replies: 7
Views: 716

Cómo conocer el siguiente folio?

... la pregunta es cómo puedo saber cual es el siguiente número que hay en ese campo AUTO_INCREMENTAL? Tengo una solución que abre el SCHEMA y funciona bien, la única pega es que se demora varios segundos, diría yo más de lo necesario. Alguna idea? Saludos
by Armando
Wed Feb 26, 2020 10:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo conocer el siguiente folio?
Replies: 9
Views: 1636

Problem with xbrowse with tdatabase - Resolved

...     COLSIZES 80,80,80,80,80,80 ;      CELL LINES NOBORDER ;      DATASOURCE oElementi I'd like to have the same schema also because I build the Xbrowse from an external class (tfsdi) with oApp():oDlg:NewGrid( nSplit ) thanks
by Silvio.Falconi
Sat May 04, 2019 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xbrowse with tdatabase - Resolved
Replies: 8
Views: 746

Meccanismo del lock file in DBF

Buongiorno Vorrei avere chiarimenti riguardo al meccanismo di lock dei record in un file DBF. In base allo schema di lock DBFLOCK_DEFAULT 0 DBFLOCK_CLIP 1 DBFLOCK_CL53 2 DBFLOCK_VFP 3 DBFLOCK_CL53EXT 4 DBFLOCK_XHB64 5 vengono visti come Loked record differenti, l'elenco dei ...
by mauri.menabue
Fri Apr 19, 2019 10:09 am
 
Forum: All products support
Topic: Meccanismo del lock file in DBF
Replies: 0
Views: 875
Next

Return to advanced search

cron