transactd 2.4.3-x86-mswin32-100 → 2.4.4-x86-mswin32-100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d0ccd3d2b36c29b713dfaf568d3a631251e6dc5
4
- data.tar.gz: 05d89bbf7b607ab28169f32f6feb1c65dd4c7670
3
+ metadata.gz: 4bf1f1cfce62863681c4b81bdd8dae79232ec5b8
4
+ data.tar.gz: 5434d675166a4676204cc498b961fa225ec8d159
5
5
  SHA512:
6
- metadata.gz: d96718f14a87809bcf9c30d24464c7c3141c92a3288189c69c23ebad97b8331db1b30fd16967341dc775602e386d2800fe31557a2a27b1867587a989b3c739ca
7
- data.tar.gz: 4cf6f8bf1f0ed359b98f5131d328236a95caca455faf74c22951046e1c06b2724ea9c5a97afe3242387db763f151e9893c81524a6b4dcb961b9f07ff5c8649d7
6
+ metadata.gz: ca3b3f75e24be961f251062651b39e201f588c8eee8e9fd758af57cbdb74ca9ce7f5139d07bf860543510b705a7d969480b1bcc24e3f0f595593f42ab037d91e
7
+ data.tar.gz: 858019772009d3349e649a965f4e3eefd88b900b2a1d2fa990508718346e6d1167a66ed31698b8f471805e66ebe7f9433e6d795451d77038cd66014237e6a0ba
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/1.9/transactd.so CHANGED
Binary file
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: x86-mswin32-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