Search found 405 matches: csv

Return to advanced search

proprietary file

How to create a proprietary file to insert information such as csv but not visible
by Silvio.Falconi
Fri Oct 21, 2022 3:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: proprietary file
Replies: 0
Views: 176

Re: convert from a txt text file to a dbf with errors - RESOLVED

... aData ) converts any string values to the destination field type, before saving the data. This function is made keeping in view conversion from CSV. This type conversion is made using the function uCharToVal( cValue, cFieldType ) //--> Coverted value of the FieldType  Converting ...
by nageswaragunupudi
Sat Sep 17, 2022 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert from a txt text file to a dbf with errors - RESOLVED
Replies: 10
Views: 640

Re: XML a CSV

Alguna idea de como hacerlo ?
Gracias!! :D
by jose_murugosa
Fri Apr 29, 2022 3:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML a CSV
Replies: 1
Views: 240

XML a CSV

Buenos días a los amigos del Foro!!

Existe alguna función en Fivewin/harbour o alguien tiene una para convertir archivos XML a archivos CSV?
by jose_murugosa
Thu Apr 28, 2022 11:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML a CSV
Replies: 1
Views: 240

Re: Error reading XLS via FWH app running as scheduled task

Hello Everyone,

Thank you for your responses. I have been investigating further and found the Windows Server 2019 does not allow for "unattended" access to open XLS through scheduled task. I will ask customer to change format to CSV and read as text.
by cdmmaui
Mon Apr 11, 2022 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error reading XLS via FWH app running as scheduled task
Replies: 5
Views: 442

Re: Searching in the content of documents

Carlos,
I remember that I did tests with fileseek. But you need the paid version to get a CSV export of the results.
Best regards,
Otto

viewtopic.php?f=3&t=33244&p=196025&hilit=fileseek&sid=b0f3b637d2d0ef8daf74d1ff56516df8#p196025
by Otto
Wed Mar 16, 2022 12:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Searching in the content of documents
Replies: 6
Views: 492

fw_arraytodbf - record empty - Resolved!

When I convert from a csv file to an array, the fw_ArrayToDBF (aData ,, bProgress) function inserts me an empty record, how do I avoid this   local  csvfile:=".\csv\file.csv"   local  cSymbol := ","   local  cText ...
by Silvio.Falconi
Tue Mar 15, 2022 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: fw_arraytodbf - record empty - Resolved!
Replies: 3
Views: 268

Re: Leer Excel grande a un array o DBF

... testing, I created an Excel table with 800,000 rows and 20 columns. I could read the data directly from xlsx file into an arry (without creating csv file) in more or less the same time. I could write the entire 800,000 rows to DBF in about 10 seconds, much less than a minute. However I did not ...
by nageswaragunupudi
Wed Feb 09, 2022 8:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 782

Re: Leer Excel grande a un array o DBF

Regards Mr Rao
Reading the CSV file by passing it to an array() not even 15 seconds, 780,000 lines, reading as XLSX took a few hours
The recording if it takes 1 hour and a half, because there are validations before recording record by record.
by Enrrique Vertiz
Tue Feb 08, 2022 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 782

Re: Leer Excel grande a un array o DBF

Enrrique Vertiz wrote:Thanks for your explanation, I worked with CSV and it was the fastest


Yes, this is the FASTEST.
May I know how much time it took for 1,000,000 records?
by nageswaragunupudi
Tue Feb 08, 2022 7:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 782

Re: Leer Excel grande a un array o DBF

Thanks for your explanation, I worked with CSV and it was the fastest
by Enrrique Vertiz
Mon Feb 07, 2022 9:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 782

Re: Leer Excel grande a un array o DBF

... GetExcelRange() and FW_ExcelToDBF() for this purpose. But your data is huge, better to use a custom approach for this case. 1) Save Excel sheet as CSV and then copy to DBF. OR 2) Reading row by row is ok. Instead, read in chunks, ranges of 20,000 approx in a loop and save it in dbf.
by nageswaragunupudi
Mon Feb 07, 2022 8:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 782

Re: APPEND FROM + Progress Bar

Enrique aqui tienes un ejemplo de la implementación de la barra de progreso leyendo el CSV que está en el array. #include "FIVEWIN.CH"FUNCTION Main()    LOCAL oDlg, oMeter, nActual := 0    DEFINE BRUSH oBrush COLOR CLR_LGRAY        DEFINE WINDOW oDlg ...
by George
Sat Feb 05, 2022 5:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: APPEND FROM + Progress Bar
Replies: 10
Views: 1532

Re: Leer Excel XLSX grande a un array o DBF

Podrias probar pasando primero el archivo CSV a un array ya que esto lo hace bien rapido. #include "FIVEWIN.CH" FUNCTION Main() LOCAL cMsgRun := "Procedure in execution; please Wait...", cMsgArrayData := "Creating CSV ...
by George
Sat Feb 05, 2022 4:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 12
Views: 1245

Re: Leer Excel XLSX grande a un array o DBF

... es que el cliente lo recibe asi de otro sistema y no quiere meter mano, quiere que se importe "tal cual" ... Una idea es grabarlo como CSV y de ahi hacerle un APPEND FROM, por el volumen puede que tome varios minutos, por eso me gustaria ponerle un "progress bar", alguien ...
by Enrrique Vertiz
Sat Feb 05, 2022 3:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 12
Views: 1245
PreviousNext

Return to advanced search