File tree Expand file tree Collapse file tree 1 file changed +0
-98
lines changed Expand file tree Collapse file tree 1 file changed +0
-98
lines changed Original file line number Diff line number Diff line change @@ -64,103 +64,6 @@ describe('55. resultSet2.js', function() {
64
64
done ( ) ;
65
65
} ) ;
66
66
} )
67
-
68
-
69
- /*beforeEach(function(done) {
70
- async.series([
71
- function(callback) {
72
- oracledb.getConnection(
73
- credential,
74
- function(err, conn) {
75
- connection = conn;
76
- callback();
77
- }
78
- );
79
- },
80
- function(callback) {
81
- connection.should.be.ok;
82
- connection.execute(
83
- createTable,
84
- function(err) {
85
- should.not.exist(err);
86
- callback();
87
- }
88
- );
89
- },
90
- function(callback) {
91
- connection.execute(
92
- insertRows,
93
- [],
94
- { autoCommit: true },
95
- function(err) {
96
- should.not.exist(err);
97
- callback();
98
- }
99
- );
100
- },
101
- function(callback) {
102
- connection.execute(
103
- proc,
104
- [],
105
- { autoCommit: true },
106
- function(err) {
107
- should.not.exist(err);
108
- callback();
109
- }
110
- );
111
- },
112
- function(callback) {
113
- connection.execute (
114
- proc2,
115
- [],
116
- { autoCommit : true },
117
- function (err ) {
118
- should.not.exist ( err );
119
- callback();
120
- }
121
- );
122
- }
123
- ], done);
124
- })
125
-
126
- afterEach(function(done) {
127
- async.series([
128
- function(callback) {
129
- connection.execute(
130
- 'DROP TABLE oracledb_employees',
131
- function(err) {
132
- should.not.exist(err);
133
- callback();
134
- }
135
- );
136
- },
137
- function(callback) {
138
- connection.execute(
139
- 'DROP PROCEDURE get_emp_rs',
140
- function(err) {
141
- should.not.exist(err);
142
- callback();
143
- }
144
- );
145
- },
146
- function(callback) {
147
- connection.execute (
148
- 'DROP PROCEDURE get_invalid_refcur',
149
- function ( err ) {
150
- should.not.exist ( err ) ;
151
- callback ();
152
- }
153
- );
154
- },
155
-
156
- function(callback) {
157
- connection.release( function(err) {
158
- should.not.exist(err);
159
- callback();
160
- });
161
- }
162
- ], done);
163
- })*/
164
67
165
68
describe ( '55.1 query a RDBMS function' , function ( ) {
166
69
@@ -1032,7 +935,6 @@ describe('55. resultSet2.js', function() {
1032
935
} )
1033
936
1034
937
1035
-
1036
938
/********************* Helper functions *************************/
1037
939
function setUp ( connection , tableName , done )
1038
940
{
You can’t perform that action at this time.
0 commit comments