transactd 2.4.3-x64-mswin64-100 → 2.4.4-x64-mswin64-100

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86bf2e9a70ecda262d102f95b0b8ad7f233e06af
4
- data.tar.gz: 00e850ac2c8c6ebe7659a98058ca9e2aa95fea1d
3
+ metadata.gz: 966697dd89ce5900172a9dac430236b50afaec75
4
+ data.tar.gz: 90408b8637aad43823eb3e446ca7f53901bb74c8
5
5
  SHA512:
6
- metadata.gz: b28ff62ab0e38d10ca4c721e79ebf995562d953c3f5fe7f36fd4a7c844560328ce2b3c9e97c4c08b33755e4d697ded2b863deb200df3f544cb33139ac3453b00
7
- data.tar.gz: 79c412f6ed4a0d1e4e4f317efa64363f6b9d8791cb301f7ac1c1341beabad0a4c14dbaf27da073a2db24b308686ed8bb8b307e4462b2c002759b161f0d094486
6
+ metadata.gz: 6393f2cb390c356491e82e01721361b2c188c4797edc0ca07dd50b7ce17520ad4723f34280ed0bcf6b9d54ec9e4f57cb6297de4c086bd16e84a3287a4b7850e8
7
+ data.tar.gz: 15ce2fd5d914c0bb30a0ef930d0968919359553b8e28847f1ef070283ea6344f811328fd52a67289d2750c6f2ab263d88c2b167ad6c94818e42badd208d45c33
data/RELEASE_NOTE-JA.md CHANGED
@@ -1,5 +1,26 @@
1
1
  リリースノート
2
2
 
3
+ ================================================================================
4
+ Version 2.4.4 2015/09/08
5
+ ================================================================================
6
+ 修正と変更点
7
+ --------------------------------------------------------------------------------
8
+ * pooledDbManagerのWindowsにおいて、プロセス終了時にtdclc_xxx.dll内でデッドロック
9
+ するが発生することがある不具合を修正しました。
10
+
11
+ * nstable、nsdatabase、dbdefの3つのクラスにstatMsgメソッドを追加しました。この
12
+ メソッドは、既にあるtdapErrメソッドと引数と戻り値の違い以外は同じ機能です。
13
+ * nsdatabase::readDatabaseDirectoryが正しく動作しない不具合を修正しました。
14
+
15
+ * PHPとRubyインターフェースでtdapErrメソッドが正しく動作しない不具合を修正しまし
16
+ た。この2つのインターフェースでは、tdapErrメソッドは、statMsgに変更されました。
17
+ また、C++とCOMインターフェースにstatMsgを追加しました。
18
+
19
+ * COMインターフェースでIErrorInfoをサポートしました。またIRecordset, IRecord,
20
+ IKeyDef, IFlags, IFieldDefs, ISortFields, IFieldNames でデフォルトプロパティー
21
+ を設定しました。
22
+
23
+
3
24
  ================================================================================
4
25
  Version 2.4.3 2015/08/31
5
26
  ================================================================================
data/RELEASE_NOTE.md CHANGED
@@ -1,4 +1,26 @@
1
1
  Release note
2
+
3
+ ================================================================================
4
+ Version 2.4.4 2015/09/08
5
+ ================================================================================
6
+ Modifications
7
+ --------------------------------------------------------------------------------
8
+ * In Windows of pooledDbManager, Fixed a bug that may be deadlock in
9
+ tdclc_xxx.dll to at the end of the process.
10
+
11
+ * Added a statMsg method to nstable,nsdatabase and dbdef class. This method is
12
+ the same function as the already tdapErr method. Other than the difference of
13
+ the arguments and return values
14
+
15
+ * In PHP and Ruby interface, it was fixed a bug that tdapErr method does not work
16
+ properly. In this two interfaces, tdapErr method has been changed to statMsg.
17
+ Also, we added a statMsg method in C ++ and COM interfaces.
18
+
19
+ * We added a IErrorInfo the COM interface. In addition, we have set the default
20
+ property to IRecordset,IRecord,IKeyDef,IFlags,IFieldDefs,ISortFields,
21
+ IFieldNames interfaces.
22
+
23
+
2
24
  ================================================================================
3
25
  Version 2.4.3 2015/08/31
4
26
  ================================================================================
data/bin/2.0/transactd.so CHANGED
Binary file
data/bin/2.1/transactd.so CHANGED
Binary file
data/bin/2.2/transactd.so CHANGED
Binary file
Binary file
Binary file
@@ -85,6 +85,10 @@ end
85
85
  def testOpenDatabase(db)
86
86
  db.open(URL, Transactd::TYPE_SCHEMA_BDF, Transactd::TD_OPEN_NORMAL)
87
87
  expect(db.stat()).to eq 0
88
+ # test statMsg
89
+ msg = db.statMsg()
90
+ expect(msg).to eq ''
91
+
88
92
  end
89
93
 
90
94
  def testCreateTable(db)
@@ -168,6 +172,10 @@ def testCreateTable(db)
168
172
  dbdef.updateTableDef(table_id)
169
173
  expect(dbdef.stat()).to eq 0
170
174
 
175
+ # test statMsg
176
+ msg = dbdef.statMsg()
177
+ expect(msg).to eq ''
178
+
171
179
  kd = dbdef.insertKey(table_id, 0)
172
180
  kd.segment(0).fieldNum = 0
173
181
  kd.segment(0).flags.bit8 = 1
@@ -225,6 +233,29 @@ def testVersion()
225
233
  db.close()
226
234
  end
227
235
 
236
+ def testReadDatabaseDirectory()
237
+ db = Transactd::Database.new()
238
+ tb = testOpenTable(db)
239
+ expect(tb).not_to be nil
240
+ s = db.readDatabaseDirectory()
241
+ expect(s).not_to eq ''
242
+ end
243
+
244
+ def testGetFileName()
245
+ s = ''
246
+ if RUBY_PLATFORM =~ /mswin(?!ce)|mingw|cygwin|bccwin/
247
+ s = Transactd::Nstable::getFileName('test\abcdefghijklnmopqrstuvwxyz1234567890.txt')
248
+ else
249
+ s = Transactd::Nstable::getFileName('test/abcdefghijklnmopqrstuvwxyz1234567890.txt')
250
+ end
251
+ expect(s).to eq 'abcdefghijklnmopqrstuvwxyz1234567890.txt'
252
+ end
253
+
254
+ def testGetDirURI()
255
+ s = Transactd::Nstable::getDirURI('tdap://localhost/test?dbfile=test.bdf')
256
+ expect(s).to eq 'tdap://localhost/test?dbfile='
257
+ end
258
+
228
259
  def testInsert()
229
260
  db = Transactd::Database.new()
230
261
  tb = testOpenTable(db)
@@ -235,6 +266,9 @@ def testInsert()
235
266
  tb.setFV(FDI_NAME, 'kosaka')
236
267
  tb.insert()
237
268
  expect(tb.stat()).to eq 0
269
+ # test statMsg
270
+ msg = tb.statMsg()
271
+ expect(msg).to eq ''
238
272
  end
239
273
  db.beginTrn()
240
274
  n = 1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transactd
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.3
4
+ version: 2.4.4
5
5
  platform: x64-mswin64-100
6
6
  authors:
7
7
  - BizStation Corp.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-01 00:00:00.000000000 Z
11
+ date: 2015-09-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Transactd client for ruby gem
14
14
  email: transactd@bizstation.jp