|
|
|
|
|
VBScript
Coming Soon - VBScript Limitations
So, you have tried to get Microsoft Access to export your floating point values with a precision of more that just two (2)?
The application itself will not do this for you. Even using a pre-defined format and setting precision yourself does nothing to effect
an extraction/export of floating point numerical columns (attributes). I present this script to you to solve this problem. Since all
databases are different, I should explain a little about the data I am working with first. Let's call the database "HDB" for Historical
Database. HDB contains just one table, "HISTORY", which has five attributes, and they are varname:Text, datetime:Date/Time,
seconds:Number, floatval:Number, alpha:Text. The script uses ADO with regular expressions for date matching and conversion.
If you are not familiar with regular expression substrings and/or character classes, I suggest you research perlre.
|
|
|
|
|
|