forked from wankdanker/node-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update issue templates (wankdanker#80)
Create an issue template for reporting bugs Signed-off-by: Mark Irish <[email protected]>
- Loading branch information
1 parent
ee4e2c1
commit 4cf9562
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |