Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haldih/dbf2sql
A simple tool written in Go to convert dBase DBF to SQL
https://github.com/haldih/dbf2sql
Last synced: 8 days ago
JSON representation
A simple tool written in Go to convert dBase DBF to SQL
- Host: GitHub
- URL: https://github.com/haldih/dbf2sql
- Owner: HaldiH
- Created: 2021-09-18T23:27:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-07T09:14:30.000Z (over 3 years ago)
- Last Synced: 2024-11-13T07:20:31.857Z (2 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dbf2sql
## A simple tool written in Go to convert dBase DBF to SQL
### Installation
You'll need [Go](https://golang.org) installed on your system to install this program.
Once you have a functional Go toolchain, run the following command to install dbf2sql:
```bash
go get github.com/ShinoYasx/dbf2sql
```### Usage
If you run the command `dbf2sql` without any parameters, you'll get the help:
```bash
$ dbf2sql
Usage of dbf2sql:
-e string
Encoding (default "UTF8")
-f string
dBase DBF file (required)
-o string
Output SQL file ('-' for stdout) (default "-")
-t string
Table name (required)
```#### Example
```bash
dbf2sql -f base.dbf -o base.sql -t test
```