Search found 25 matches: longtext

Searched query: longtext

by servicomver
Tue Nov 05, 2024 7:41 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar Listbox
Replies: 2
Views: 429

Ajustar Listbox

... Clave: 001 Sucursal: Independencia
Codigo: AB1013 Ubicacion: Centro
Fecha: 05/11/2024 Equipo: Refrigerador

El campo de la columna 3 es un Longtext de un RecordSet SQL

@ 3.5, .5 LISTBOX oLbx FIELDS "Folio: " + Transform(oRecordSet:Fields("Id"):value,"9999") + CRLF + "Codigo:" +
IIF ...
by cmsoft
Fri Jul 05, 2024 3:26 pm
Forum: FiveWin para Harbour/xHarbour
Topic: RICHEDIT 5 y MySql
Replies: 2
Views: 526

RICHEDIT 5 y MySql

Estimados:
Tengo un texto de un RTF, lo copio y grabo en un campo LONGTEXT de MySql.
Luego, con el siguiente codigo, lo puedo ver perfectamente en un dialogo

DEFINE DIALOG oForm TITLE "Modelos" FROM 05,10 TO 35,120 OF oWnd
@ 35, 15 RICHEDIT5 oGet[3] VAR cText OF oForm PIXEL SIZE 400, 170
@ 05,30 ...
by MarcoBoschi
Fri Nov 24, 2023 12:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DTPicker
Replies: 2
Views: 646

Re: DTPicker

Oh thank youvery much but
I thought a value that contains what you see on video was expected
such as oData:cData or oData:cTextData or LongText Data.....


bye
by goosfancito
Sat Apr 09, 2022 8:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 25011

Re: FWHMARIADB Samples

What is the name to field "LONGTEXT"?
by horacio
Tue Sep 14, 2021 1:28 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Backup y mysql
Replies: 7
Views: 1035

Backup y mysql

... funciona salvo cuando quiero recuperar el backup, el registro me devuelve 310 bytes menos que el original, por supuesto cuando quiero restaurar me dice que el backup está corrupto. E intentado con un campo longblob y longtext sin ningún resultado. Alguna pista donde mirar? Muchas gracias!.

Saludos
by goosfancito
Mon May 03, 2021 9:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: How i do to crate with in TDOLPHIN field "LONGTEXT"?
Replies: 2
Views: 439

How i do to crate with in TDOLPHIN field "LONGTEXT"?

... T. )   aDatos := { ;               { "texto",        "LONGTEXT", 250, 0, .T., 0 }, ;             }   RETURN ( ::oCnx:createTable( "tbfichas ...
by Horizon
Thu Jun 18, 2020 8:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 2464

Strange MariaDB save problem.

Hi,

I have lots of pdf file and I want to save them to related records in LONGTEXT field. It saves for a while and surprisingly after storing about 1580 mb, the application of oRs2:Save() function ends without any error. The hb_error file does not generated either.

How can I solve this problem ...
by nageswaragunupudi
Thu Apr 16, 2020 12:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: Need an Advice about Memo fields usage in MariaDB.
Replies: 5
Views: 1026

Re: Need an Advice about Memo fields usage in MariaDB.

You can safely store large memos also in LONGTEXT fields. In case of binary data you can store in LONGBLOB fields.

Regarding the speed of retrieval, it is a good practice to exclude these fields in the SQL reading the data and access these fields only when needed.
by nageswaragunupudi
Sat Feb 15, 2020 3:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO: filter does not work on memo fields [fixed]
Replies: 9
Views: 1681

Re: ADO: filter does not work on memo fields

In our tests, filters on LONGTEXT fields are working.

This is the test program:
#include "fivewin.ch"function Main()   local oCn, cSql, oRs   oCn   := FW_DemoDB( "ADO" )   TRY      oCn:Execute( "DROP TABLE testmemo" )&nbsp ...
by cmsoft
Mon Mar 13, 2017 4:05 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Subir y Bajar imagenes a un servidor de internet
Replies: 8
Views: 3252

Re: Subir y Bajar imagenes a un servidor de internet

... las ciudades.
Para poder guardar las imagenes tenes 2 opciones, o la pones como un dato en una tabla de tu base de datos en un campo longblob/longtext/mediumblog/mediumtext o lo guardas subes mediante ftp. Por lo que lei, guardar las imagenes en una tabla suele relentizar las busquedas despues ...
by nageswaragunupudi
Mon Nov 07, 2016 8:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)
Replies: 48
Views: 24280

Re: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)

We did this test for LONGBLOB and LONGTEXT fields. Source code is provided in this post, which uses files available in fwh\samples folder and can be tested by any.

function BlobTable()   local cSourceDBF  := "c:\fwh\samples\wwonders.dbf"   local cBackUpFile := "c ...
by nageswaragunupudi
Sun Nov 06, 2016 5:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)
Replies: 48
Views: 24280

Re: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)

tables with longblob and longtext fields and with images or
PDF files inside a longblob field.
As we said in our earlier post, these would be a little slower because we are backing up and restoring one record per one sql statement. While writing the code, we just wanted to play safe on memory ...
by Armando
Sun Nov 06, 2016 5:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)
Replies: 48
Views: 24280

Re: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)

... for the benchmark, it's very impresive.

I'll be glad and very gratifully if you can make an other benchmark
using tables with longblob and longtext fields and with images or
PDF files inside a longblob field.

I want to update my fwh but it's very important to know the restore speed.

Thanks ...