MCPcopy Index your code
hub / github.com/AccelerationNet/access2csv

github.com/AccelerationNet/access2csv @v0.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.1 ↗ · + Follow
6 symbols 13 edges 1 files 1 documented · 17%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

access2csv

Simple program to extract data from Access databases into CSV files.

Features

  • view the schema of the database
  • export all tables to csv files named after the table
  • export one table

Examples

Dumping a schema:

$ java -jar access2csv.jar myfile.accdb --schema    
CREATE TABLE Test(
    Id INT,
    Name TEXT,
)
CREATE TABLE Test2(
    Id INT,
    Name TEXT
)

Exporting all tables:

$ java -jar access2csv.jar myfile.accdb
Exporting 'Test' to /home/ryepup/Test.csv
2 rows exported
Exporting 'Test2' to /home/ryepup/Test2.csv
100000 rows exported

Export one table:

$ java -jar access2csv.jar myfile.accdb Test
1,"foo"
2,"bar"

Depenencies

  • Jackess - a pure Java library for reading from and writing to MS Access databases
  • opencsv - CSV library

Core symbols most depended-on inside this repo

export
called by 2
src/access2csv/Driver.java
exportAll
called by 2
src/access2csv/Driver.java
printUsage
called by 2
src/access2csv/Driver.java
schema
called by 1
src/access2csv/Driver.java
main
called by 0
src/access2csv/Driver.java

Shape

Method 5
Class 1

Languages

Java100%

Modules by API surface

src/access2csv/Driver.java6 symbols

For agents

$ claude mcp add access2csv \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact