Skip to content

Commit

Permalink
Update issue templates (wankdanker#80)
Browse files Browse the repository at this point in the history
Create an issue template for reporting bugs

Signed-off-by: Mark Irish <[email protected]>
  • Loading branch information
markdirish authored May 13, 2020
1 parent ee4e2c1 commit 4cf9562
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
name: Bug Report
about: Notify us about a bug in the odbc Node.js package
title: "[BUG]"
labels: ''
assignees: ''

---
<!--
**Before you write a report...**
* Read [the documentation](https://github.com/markdirish/node-odbc/blob/master/README.md)
* Look through [other issues](https://github.com/markdirish/node-odbc/issues?q=) for solutions
* Rebuild the `odbc` binary with `DEBUG` to produce detailed information
* Change the contents of `node_modules/odbc/binding.gyp` to define `DEBUG`:
```
...
'defines' : [
'NAPI_EXPERIMENTAL', 'DEBUG'
],
...
```
* Rebuild the `odbc` binary:
```
cd node_modules/odbc && npm install
```
-->
**Describe your system**
* `odbc` Package Version:
* ODBC Driver:
* Database Name:
* Database Version:
* Database OS:
* Node.js Version:
* Node.js OS:

**Describe the bug**
A clear and concise description of what the bug is.

**Expected behavior**
A clear and concise description of what you expected to happen.

**To Reproduce**
Steps to reproduce the behavior:
1. Connect to database with options '...'
2. Create database table '...'
3. Run query '...'

**Code**
If applicable, add snippets of code to show:

* The offending code:
* Any DEBUG information printed to the terminal:
* Any error information returned from a function call:

**Additional context**
Add any other context about the problem here.

0 comments on commit 4cf9562

Please sign in to comment.