DBF reader plugin

This commit is contained in:
SPRINX0\prochazka
2025-01-07 17:24:56 +01:00
parent 79bf9016a3
commit 2521f05526
11 changed files with 322 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
const fileFormat = {
packageName: 'dbgate-plugin-dbf',
// file format identifier
storageType: 'dbf',
// file extension without leading dot
extension: 'dbf',
// human readable file format name
name: 'DBF',
// function name from backend, which contains reader factory, postfixed by package name
readerFunc: 'reader@dbgate-plugin-dbf',
args: [
{
type: 'text',
name: 'encoding',
label: 'Encoding',
apiName: 'encoding',
},
],
};
export default {
fileFormats: [fileFormat],
};