Skip to content

Commit

Permalink
add documentation generation stump
Browse files Browse the repository at this point in the history
  • Loading branch information
alyst committed Jan 26, 2021
1 parent d8dd0b1 commit d9dc9bc
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
17 changes: 17 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using Documenter, DBInterface

makedocs(;
modules=[DBInterface],
format=Documenter.HTML(),
pages=[
"Home" => "index.md",
],
repo="https://github.com/JuliaDatabases/DBInterface.jl/blob/{commit}{path}#L{line}",
sitename="DBInterface.jl",
authors="Jacob Quinn",
assets=String[],
)

deploydocs(;
repo="github.com/JuliaDatabases/DBInterface.jl",
)
26 changes: 26 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# DBInterface.jl Documentation

```@contents
```
*DBInterface.jl* provides interface definitions to allow common database operations to be implemented consistently
across various database packages.

## Functions
```@docs
DBInterface.connect
DBInterface.prepare
DBInterface.@prepare
DBInterface.execute
DBInterface.executemany
DBInterface.executemultiple
DBInterface.close!
DBInterface.lastrowid
```

## Types

```@docs
DBInterface.Connection
DBInterface.Statement
DBInterface.Cursor
```

0 comments on commit d9dc9bc

Please sign in to comment.