dbf-chinese
v1.0.1
Published
generate dbf files
Downloads
2
Maintainers
Readme
dbf-chinese
因为原作者不再维护dbf项目,所以新开一个项目用来修改dbf不支持中文字符和属性名长度的问题
Looking for new maintainers!
This project is currently unmaintained. We'd love to turn it over to a new maintainer. If you're interested, please file an issue!
Write dBase files in pure JavaScript, in node.js or browsers. Requires ArrayBuffer and DataView support.
usage
npm install dbf-chinese
Or just in a browser:
https://unpkg.com/dbf@latest/dbf-chinese.js
Replace latest
with the latest version if you want to be sure.
example
in node:
var dbf = require('../'),
fs = require('fs');
var buf = dbf.structure([
{foo:'bar',noo:10},
{foo:'louie'}
]);
fs.writeFileSync('foo.dbf', toBuffer(buf.buffer));
function toBuffer(ab) {
var buffer = new Buffer(ab.byteLength);
var view = new Uint8Array(ab);
for (var i = 0; i < buffer.length; ++i) {
buffer[i] = view[i];
}
return buffer;
}
API
dbf.structure(array)
Given an array of objects with string or number attributes, return a DataView object referencing an ArrayBuffer that contains a full DBF file structure.
Specifications
- http://www.clicketyclick.dk/databases/xbase/format/dbf.html#DBF_STRUCT
- http://www.quantdec.com/SYSEN597/GTKAV/section4/chapter_15a.htm
- http://ulisse.elettra.trieste.it/services/doc/dbase/DBFstruct.htm