Search found 103 matches: datatype

Return to advanced search

Re: XBROWSE Error on :nFooterType == AGGR_MIN

... are your comments? When the programmer sets AGGR_MAX or AGGR_MIN he is also responsible to ensure that all values of the column should of same datatype or nil.
by nageswaragunupudi
Thu Jun 08, 2017 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Error on :nFooterType == AGGR_MIN
Replies: 2
Views: 838

Re: FWH Logic with method's (Xbrowse ToDbf)

... a list of fields is provided the contents are copied into the fields specified in the list. It is the responsibility of the programmer to ensure datatype compatibility with the destination fields. 3) bProgress: Optional From the above you can see that the syntax you used for the button actions ...
by nageswaragunupudi
Mon Dec 19, 2016 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Logic with method's (Xbrowse ToDbf)
Replies: 4
Views: 1350

Re: almacenar archivos en bases de datos SQLite

Hola/Hello bpd2000,

debes usar el tipo de dato BLOB para guardar ese tipo de ficheros/you must use BLOB datatype to save these files.

https://www.sqlite.org/datatype3.html

Saludos/Best regards,
by Baxajaun
Sat Sep 10, 2016 9:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: almacenar archivos en bases de datos SQLite
Replies: 3
Views: 828

Re: field data in database access

I presume the datatype for MyTime is Char ? .. I would place a msginfo() on your value to see if you are looking at a nil value or just " " Just to debug and test : cTime := odbf:Fields("MYTIME"):value Msginfo( ...
by Rick Lipkin
Thu Jul 07, 2016 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: field data in database access
Replies: 1
Views: 453

Re: DBF to SQL converter program

... TABLE sqltable_name CHANGE old_column_name new_column_name"  2. Add new ID field EX. "ALTER TABLE sqltable_name ADD COLUMN ID <DATATYPE>"  Now we have a AUTOINC field WHATEVER_ID and a ID with datatype you indicated. If the ID field in the dbf file is autoinc I ...
by AHF
Thu Aug 20, 2015 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 18133

Re: for Mr. Nages ADO SELECT for logical fields

Works for those RDBMSs which support BIT datatype to represent boolean values, eg mssql, mysql, access, etc. that too if you choose BIT datatype for the field to represent boolean values. ADO recognizes these BIT fields as adBoolean, Well known ...
by nageswaragunupudi
Sun Jun 21, 2015 9:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: for Mr. Nages ADO SELECT for logical fields
Replies: 5
Views: 836

Re: ADO RDD xHarbour

... from recno() its correct. Then when passing it to dbgoto() it gets to ado_gotoid() in adordd incorrect. Bookmark does not assure any specific datatype because it depends on the provider.
by AHF
Mon Apr 06, 2015 4:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447069

Re: DataRow problem

... .f. EditDlg( oRec ) But I do not advise this unsafe approach. Normal practice is to use "BIT" field type to create a BOOLEAN (logical) datatype in most sql databases, eg. MS Access, MS Sql, MySql, Sqlite3, etc., but not TINYINT. ADO recognizes BIT datatype as ADO Type adBoolean. FWH ...
by nageswaragunupudi
Thu Feb 26, 2015 4:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DataRow problem
Replies: 2
Views: 893

Re: Strange problems on decimals - dangerous bug !!

... because I used FWH library functions. I tried many times. What saved me was that I used FWH function to create the table, which used the correct datatype, ie INT and not SMALLINT. Trust ADO and Trust FWH.
by nageswaragunupudi
Sun Jan 18, 2015 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange problems on decimals - dangerous bug !!
Replies: 37
Views: 5149

Re: Strange problems on decimals - dangerous bug !!

One of the advantages of SqLite is that we can store any datatype in a column of any datatype. This is like storing into and retrieving from an array. This advantage can also be dangerous pitfall at times. We are not sure at times what we accessed is ...
by nageswaragunupudi
Sat Jan 17, 2015 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange problems on decimals - dangerous bug !!
Replies: 37
Views: 5149

Re: TDbf PRO disponible...

Manuel, Creo recordar que cambié el nombre de la clase que maneja los índices para evitar conflictos con otros fuentes (creo que los propios de FiveWin). Entre mis notas pata TDBF tengo lo siguiente: /* > 01/06/2006 C.Gelabert - A la funció Str() li he afegit Str(...,5 ,0) doncs en Harbour pren e...
by FiveWiDi
Sun Sep 07, 2014 9:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDbf PRO disponible...
Replies: 69
Views: 17261

New FTDN August/Agosto 2013 (FWH 13.08)

... who are not providing defaults for NULL values, this modification is made. * Enhancement: Enhanced Class TDataRow. Now assignment of wronge datatype raises datatype error. Type check is relaxed for arrays and sqlite. If the programmer desires to relax type check he may set data :lTypeCheck ...
by Antonio Linares
Tue Sep 17, 2013 10:48 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2013 (FWH 13.08)
Replies: 0
Views: 2511

Re: xBrowse, bSeek y lAutoOrder

Thanks for your recommendation to use SetRDD before assigning DATA or codeblocks, that solves the problem due after executing SetRDD I can change the codeblocks, and Initiate will not run again SetRdd. That is how XBrowse is intended to be used. Any further developments assume xbrowse is used the w...
by nageswaragunupudi
Mon Jul 01, 2013 12:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1402

Re: xBrowse, bSeek y lAutoOrder

Hi, many thanks for your answer. Thanks for your recommendation to use SetRDD before assigning DATA or codeblocks, that solves the problem due after executing SetRDD I can change the codeblocks, and Initiate will not run again SetRdd. After reviewing the xBrowse class, another alternative is to defi...
by Biel EA6DD
Mon Jul 01, 2013 9:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1402

Re: TDataRow and ADO questions

... to manipulate that field without realizing it was NULL, your program will fail at run-time. 2) Also .. if you are using xHarbour .. there is a new dataType "T" for Date\Time and if you assign a DateTime value to a variable or try to manipulate that value like valtype "D" you ...
by Rick Lipkin
Fri Jun 14, 2013 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDataRow and ADO questions
Replies: 48
Views: 11585
PreviousNext

Return to advanced search