Runtests.exe.config 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <appSettings>
  4. <add key="databases" value="mysql;mssql;postgres;oracle" />
  5. <add key="deleteTables" value="Y"/>
  6. <add key="createTables" value="Y"/>
  7. <add key="insertData" value="Y"/>
  8. </appSettings>
  9. <configSections>
  10. <section name="mysql" type="SectionHandlers.SectionHandler, DbRetrieve" allowLocation="true"/>
  11. <section name="mssql" type="SectionHandlers.SectionHandler, DbRetrieve" allowLocation="true"/>
  12. <section name="postgres" type="SectionHandlers.SectionHandler, DbRetrieve" allowLocation="true"/>
  13. <section name="oracle" type="SectionHandlers.SectionHandler, DbRetrieve" allowLocation="true"/>
  14. </configSections>
  15. <mysql>
  16. <database>
  17. <name> mysql </name>
  18. <connectionString> "Server=164.99.152.215;Database=mysql;User Id=sudha;Password=novell" </connectionString>
  19. <OdbcConnString>DSN=Mysql-Test-DSN;uid=sudha;pwd=novell </OdbcConnString>
  20. </database>
  21. <tables>
  22. <numTables> 3 </numTables>
  23. <table1>
  24. <name>numericTable </name>
  25. <numColumns>15</numColumns>
  26. <column1>
  27. <name> serialNo </name>
  28. <type> TINYINT UNSIGNED</type>
  29. <constraint> PRIMARY KEY</constraint>
  30. </column1>
  31. <column2>
  32. <name> unsigned_tinyInt </name>
  33. <type> TINYINT UNSIGNED</type>
  34. </column2>
  35. <column3>
  36. <name> signed_tinyInt </name>
  37. <type> TINYINT </type>
  38. </column3>
  39. <column4>
  40. <name> bit </name>
  41. <type> BIT </type>
  42. </column4>
  43. <column5>
  44. <name> bool </name>
  45. <type> BOOL </type>
  46. </column5>
  47. <column6>
  48. <name> unsigned_smallint</name>
  49. <type> SMALLINT UNSIGNED</type>
  50. </column6>
  51. <column7>
  52. <name> signed_smallint</name>
  53. <type> SMALLINT </type>
  54. </column7>
  55. <column8>
  56. <name> unsigned_mediumint</name>
  57. <type> MEDIUMINT UNSIGNED</type>
  58. </column8>
  59. <column9>
  60. <name> signed_mediumint</name>
  61. <type> MEDIUMINT </type>
  62. </column9>
  63. <column10>
  64. <name> unsigned_int</name>
  65. <type> INT UNSIGNED</type>
  66. </column10>
  67. <column11>
  68. <name> signed_int</name>
  69. <type> INT </type>
  70. </column11>
  71. <column12>
  72. <name> unsigned_integer</name>
  73. <type> INTEGER UNSIGNED</type>
  74. </column12>
  75. <column13>
  76. <name> signed_integer</name>
  77. <type> INTEGER </type>
  78. </column13>
  79. <column14>
  80. <name> unsigned_bigint</name>
  81. <type> BIGINT UNSIGNED </type>
  82. </column14>
  83. <column15>
  84. <name> signed_bigint</name>
  85. <type> BIGINT </type>
  86. </column15>
  87. </table1>
  88. <table2>
  89. <name>realNoTable </name>
  90. <numColumns>11</numColumns>
  91. <column1>
  92. <name> serialNo </name>
  93. <type> TINYINT UNSIGNED </type>
  94. </column1>
  95. <column2>
  96. <name> unsigned_float </name>
  97. <type> FLOAT(24) UNSIGNED </type>
  98. </column2>
  99. <column3>
  100. <name> signed_float </name>
  101. <type> FLOAT(24) </type>
  102. </column3>
  103. <column4>
  104. <name> unsigned_double_float </name>
  105. <type> FLOAT(25) UNSIGNED</type>
  106. </column4>
  107. <column5>
  108. <name> signed_double_float </name>
  109. <type> FLOAT(53) </type>
  110. </column5>
  111. <column6>
  112. <name> unsigned_double</name>
  113. <type> DOUBLE UNSIGNED </type>
  114. </column6>
  115. <column7>
  116. <name> signed_double</name>
  117. <type> DOUBLE </type>
  118. </column7>
  119. <column8>
  120. <name> unsigned_double_precision</name>
  121. <type> DOUBLE PRECISION UNSIGNED</type>
  122. </column8>
  123. <column9>
  124. <name> signed_real</name>
  125. <type> REAL </type>
  126. </column9>
  127. <column10>
  128. <name> unsigned_decimal</name>
  129. <type> DECIMAL(6,3) UNSIGNED</type>
  130. </column10>
  131. <column11>
  132. <name> signed_numeric</name>
  133. <type> NUMERIC(5,3) </type>
  134. </column11>
  135. </table2>
  136. <table3>
  137. <name>dateTable </name>
  138. <numColumns>6</numColumns>
  139. <column1>
  140. <name> serialNo </name>
  141. <type> TINYINT UNSIGNED </type>
  142. </column1>
  143. <column2>
  144. <name> dateField</name>
  145. <type> DATE </type>
  146. </column2>
  147. <column3>
  148. <name> datetimeField</name>
  149. <type> DATETIME </type>
  150. </column3>
  151. <column4>
  152. <name> timestampField</name>
  153. <type> TIMESTAMP </type>
  154. </column4>
  155. <column5>
  156. <name> timeField</name>
  157. <type> TIME </type>
  158. </column5>
  159. <column6>
  160. <name> yearField</name>
  161. <type> YEAR </type>
  162. </column6>
  163. </table3>
  164. </tables>
  165. <values>
  166. <numTables>3</numTables>
  167. <table1>
  168. <tableName>numericTable</tableName>
  169. <numRows>4</numRows>
  170. <numCols>15</numCols>
  171. <row1>
  172. <column1> 1 </column1>
  173. <column2> 0</column2>
  174. <column3> -128</column3>
  175. <column4> -128</column4>
  176. <column5> -128</column5>
  177. <column6> 0 </column6>
  178. <column7> -32768 </column7>
  179. <column8> 0</column8>
  180. <column9> -8388608 </column9>
  181. <column10> 0 </column10>
  182. <column11> -2147483648 </column11>
  183. <column12> 0 </column12>
  184. <column13> -2147483648 </column13>
  185. <column14> 0 </column14>
  186. <column15> -9223372036854775808 </column15>
  187. </row1>
  188. <row2>
  189. <column1> 2 </column1>
  190. <column2> 100</column2>
  191. <column3> 50 </column3>
  192. <column4> 100 </column4>
  193. <column5> 100 </column5>
  194. <column6> 3000 </column6>
  195. <column7> -300 </column7>
  196. <column8> 500000 </column8>
  197. <column9> -100000 </column9>
  198. <column10> 4000000 </column10>
  199. <column11> 500000 </column11>
  200. <column12> 4000000 </column12>
  201. <column13> 500000 </column13>
  202. <column14> 5000000000 </column14>
  203. <column15> -5000000000 </column15>
  204. </row2>
  205. <row3>
  206. <column1> 3 </column1>
  207. <column2> 255</column2>
  208. <column3> 127</column3>
  209. <column4> 127</column4>
  210. <column5> 127</column5>
  211. <column6> 65535</column6>
  212. <column7> 32767 </column7>
  213. <column8> 16777215 </column8>
  214. <column9> 8388607 </column9>
  215. <column10> 4294967295 </column10>
  216. <column11> 2147483647 </column11>
  217. <column12> 4294967295 </column12>
  218. <column13> 2147483647 </column13>
  219. <column14> 18446744073709551615 </column14>
  220. <column15> 9223372036854775807 </column15>
  221. </row3>
  222. <row4>
  223. <column1> 4 </column1>
  224. <column2> null </column2>
  225. <column3> null </column3>
  226. <column4> null </column4>
  227. <column5> null </column5>
  228. <column6> null </column6>
  229. <column7> null </column7>
  230. <column8> null </column8>
  231. <column9> null </column9>
  232. <column10> null </column10>
  233. <column11> null </column11>
  234. <column12> null </column12>
  235. <column13> null </column13>
  236. <column14> null </column14>
  237. <column15> null </column15>
  238. </row4>
  239. <changes>
  240. <numChanges>5</numChanges>
  241. <change1>
  242. <row>1</row>
  243. <col>2</col>
  244. <value>58 </value>
  245. </change1>
  246. <change2>
  247. <row>1</row>
  248. <col>6</col>
  249. <value> 10 </value>
  250. </change2>
  251. <change3>
  252. <row>2</row>
  253. <col>3</col>
  254. <value>27 </value>
  255. </change3>
  256. <change4>
  257. <row>2</row>
  258. <col>6</col>
  259. <value>999 </value>
  260. </change4>
  261. <change5>
  262. <row>1</row>
  263. <col>14</col>
  264. <value>999</value>
  265. </change5>
  266. </changes>
  267. </table1>
  268. <table2>
  269. <tableName>realNoTable</tableName>
  270. <numRows>6</numRows>
  271. <numCols>11</numCols>
  272. <row1>
  273. <column1> 1 </column1>
  274. <column2> 0 </column2>
  275. <column3> 0 </column3>
  276. <column4> 0 </column4>
  277. <column5> 0 </column5>
  278. <column6> 0 </column6>
  279. <column7> 0 </column7>
  280. <column8> 0 </column8>
  281. <column9> 0 </column9>
  282. <column10> 0 </column10>
  283. <column11> 0 </column11>
  284. </row1>
  285. <row2>
  286. <column1> 2 </column1>
  287. <column2> 1.175494351E-38 </column2>
  288. <column3> -3.402823466E+38 </column3>
  289. <column4> 1.175494351E-38 </column4>
  290. <column5> -1.797693134862315E+308 </column5>
  291. <column6> 1.175494351E-38 </column6>
  292. <column7> -1.797693134862315E+308 </column7>
  293. <column8> 1.175494351E-38 </column8>
  294. <column9> -1.797693134862315E+308 </column9>
  295. <column10> 99.999 </column10>
  296. <column11> -23.456 </column11>
  297. </row2>
  298. <row3>
  299. <column1> 3 </column1>
  300. <column2> 3.402823466E+38 </column2>
  301. <column3> -1.175494351E-38 </column3>
  302. <column4> 3.402823466E+38 </column4>
  303. <column5> -2.2250738585072014E-308 </column5>
  304. <column6> 3.402823466E+38 </column6>
  305. <column7> -2.2250738585072014E-308 </column7>
  306. <column8> 3.402823466E+38 </column8>
  307. <column9> -2.2250738585072014E-308 </column9>
  308. <column10> 778.123 </column10>
  309. <column11> -99.999 </column11>
  310. </row3>
  311. <row4>
  312. <column1> 4 </column1>
  313. <column2> 1.2345E+20</column2>
  314. <column3> 1.175494351E-38 </column3>
  315. <column4> 1.2345E+20 </column4>
  316. <column5> 2.2250738585072014E-308 </column5>
  317. <column6> 1.2345E+20 </column6>
  318. <column7> 2.2250738585072014E-308 </column7>
  319. <column8> 1.2345E+20 </column8>
  320. <column9> 2.2250738585072014E-308 </column9>
  321. <column10> 308.90 </column10>
  322. <column11> 12.345 </column11>
  323. </row4>
  324. <row5>
  325. <column1> 5 </column1>
  326. <column2> 3.452E-19</column2>
  327. <column3> 3.402823466E+38 </column3>
  328. <column4> 4.32E-15 </column4>
  329. <column5> 1.797693134862315E+308 </column5>
  330. <column6> 4.32E-15 </column6>
  331. <column7> 1.797693134862315E+308 </column7>
  332. <column8> 4.32E-15 </column8>
  333. <column9> 1.797693134862315E+308 </column9>
  334. <column10> 999.999 </column10>
  335. <column11> 999.999 </column11>
  336. </row5>
  337. <row6>
  338. <column1> 6 </column1>
  339. <column2> null </column2>
  340. <column3> null </column3>
  341. <column4> null </column4>
  342. <column5> null </column5>
  343. <column6> null </column6>
  344. <column7> null </column7>
  345. <column8> null </column8>
  346. <column9> null </column9>
  347. <column10> null </column10>
  348. <column11> null </column11>
  349. </row6>
  350. <changes>
  351. <numChanges>1</numChanges>
  352. <change1>
  353. <row>1</row>
  354. <col>2</col>
  355. <value>67.58 </value>
  356. </change1>
  357. <change2>
  358. <row>1</row>
  359. <col>5</col>
  360. <value>1.58E+124 </value>
  361. </change2>
  362. <change3>
  363. <row>2</row>
  364. <col>7</col>
  365. <value>-1.58E-124 </value>
  366. </change3>
  367. <change4>
  368. <row>1</row>
  369. <col>8</col>
  370. <value>1.12238E-62 </value>
  371. </change4>
  372. </changes>
  373. </table2>
  374. <table3>
  375. <tableName>dateTable</tableName>
  376. <numRows>9</numRows>
  377. <numCols>6</numCols>
  378. <row1>
  379. <column1> 1 </column1>
  380. <column2> '1000-01-01' </column2>
  381. <column3> '1000-01-01 00:00:00' </column3>
  382. <column4> '1970-01-02 00:00:00' </column4>
  383. <column5> '-23:59:59' </column5>
  384. <column6> 2004 </column6>
  385. </row1>
  386. <row2>
  387. <column1> 2 </column1>
  388. <column2> '1999-12-17' </column2>
  389. <column3> '1999-12-17 08:00:00' </column3>
  390. <column4> '2000-01-01 04:40:00' </column4>
  391. <column5> '-23:45:56' </column5>
  392. <column6> 1999 </column6>
  393. </row2>
  394. <row3>
  395. <column1> 3 </column1>
  396. <column2> '9999-12-31' </column2>
  397. <column3> '9999-12-31 23:59:59' </column3>
  398. <column4> '2037-12-31 23:59:59' </column4>
  399. <column5> '23:59:59' </column5>
  400. <column6> 2155</column6>
  401. </row3>
  402. <row4>
  403. <column1> 4 </column1>
  404. <column2> '1999@12@31' </column2>
  405. <column3> '1999@12@31 11+30+45' </column3>
  406. <column4> '1999@12@31 11+30+45' </column4>
  407. <column5> '12:23:34' </column5>
  408. <column6> 1901</column6>
  409. </row4>
  410. <row5>
  411. <column1> 5 </column1>
  412. <column2> '9999.11.18' </column2>
  413. <column3> '9999.11.18 11*45*50' </column3>
  414. <column4> '2037.11.18 11*45*50' </column4>
  415. <column5> '23:34:34' </column5>
  416. <column6> 2069 </column6>
  417. </row5>
  418. <row6>
  419. <column1> 6 </column1>
  420. <column2> '9999/11/09' </column2>
  421. <column3> '9999/11/09 12:23:34' </column3>
  422. <column4> '2037/11/09 12:23:34' </column4>
  423. <column5> '09:08:07' </column5>
  424. <column6> 1970</column6>
  425. </row6>
  426. <row7>
  427. <column1> 7 </column1>
  428. <column2> 19980404 </column2>
  429. <column3> 19980404083050 </column3>
  430. <column4> 19980404083050 </column4>
  431. <column5> 083045 </column5>
  432. <column6> 0000</column6>
  433. </row7>
  434. <row8>
  435. <column1> 8 </column1>
  436. <column2> '0000-00-00' </column2>
  437. <column3> '0000-00-00 00:00:00' </column3>
  438. <column4> 00000000000000 </column4>
  439. <column5> '00:00:00'</column5>
  440. <column6> 00</column6>
  441. </row8>
  442. <row9>
  443. <column1> 9 </column1>
  444. <column2> null </column2>
  445. <column3> null </column3>
  446. <column4> null </column4>
  447. <column5> null </column5>
  448. <column6> null </column6>
  449. </row9>
  450. <changes>
  451. <numChanges>3</numChanges>
  452. <change1>
  453. <row>1</row>
  454. <col>5</col>
  455. <value>'12:23:34' </value>
  456. </change1>
  457. <change2>
  458. <row>1</row>
  459. <col>3</col>
  460. <value>'2004-12-17 08:00:00' </value>
  461. </change2>
  462. <change3>
  463. <row>1</row>
  464. <col>6</col>
  465. <value> 1980 </value>
  466. </change3>
  467. </changes>
  468. </table3>
  469. </values>
  470. <queries>
  471. <numQueries> 2 </numQueries>
  472. <query1> Select COLUMNS from TABLE1 order by COLUMN1 </query1>
  473. <query2> Select COLUMN1,COLUMN3,COLUMN5 from TABLE2 order by COLUMN1 </query2>
  474. <query3> Select COLUMN2,COLUMN4 from TABLE3 order by COLUMN1 </query3>
  475. </queries>
  476. </mysql>
  477. <mssql>
  478. <database>
  479. <name> mssql </name>
  480. <connectionString> Server=164.99.168.131;Database=northwind;User ID=sa;Password=novell;</connectionString>
  481. <OdbcConnString>DSN=MsSQL-DSN;uid=sa;pwd=novell </OdbcConnString>
  482. </database>
  483. <StoredProcExists> Y </StoredProcExists>
  484. <tables>
  485. <numTables> 5 </numTables>
  486. <table1>
  487. <name>numericTable </name>
  488. <numColumns>6</numColumns>
  489. <column1>
  490. <name> sNo </name>
  491. <type> tinyint </type>
  492. </column1>
  493. <column2>
  494. <name> bigInteger </name>
  495. <type> bigint </type>
  496. </column2>
  497. <column3>
  498. <name> integer </name>
  499. <type>int</type>
  500. </column3>
  501. <column4>
  502. <name> smallInteger </name>
  503. <type> smallint </type>
  504. </column4>
  505. <column5>
  506. <name> tinyInt </name>
  507. <type> tinyint </type>
  508. </column5>
  509. <column6>
  510. <name> bit </name>
  511. <type> bit </type>
  512. </column6>
  513. </table1>
  514. <table2>
  515. <name>dateTimeTable </name>
  516. <numColumns>3</numColumns>
  517. <column1>
  518. <name> sNo </name>
  519. <type> tinyInt </type>
  520. </column1>
  521. <column2>
  522. <name> date</name>
  523. <type> datetime </type>
  524. </column2>
  525. <column3>
  526. <name> smalldate </name>
  527. <type> smalldatetime </type>
  528. </column3>
  529. </table2>
  530. <table3>
  531. <name>realNosTable </name>
  532. <numColumns>5</numColumns>
  533. <column1>
  534. <name> sNo </name>
  535. <type> tinyInt </type>
  536. </column1>
  537. <column2>
  538. <name> decimalCol </name>
  539. <type> decimal(8,4) </type>
  540. </column2>
  541. <column3>
  542. <name> numericCol </name>
  543. <type> numeric(6,4) </type>
  544. </column3>
  545. <column4>
  546. <name> floatCol </name>
  547. <type> float </type>
  548. </column4>
  549. <column5>
  550. <name> realCol </name>
  551. <type> real </type>
  552. </column5>
  553. </table3>
  554. <table4>
  555. <name>moneyTable </name>
  556. <numColumns>3</numColumns>
  557. <column1>
  558. <name> sNo </name>
  559. <type> tinyInt </type>
  560. </column1>
  561. <column2>
  562. <name> money </name>
  563. <type> money </type>
  564. </column2>
  565. <column3>
  566. <name> smallmoney </name>
  567. <type> smallmoney </type>
  568. </column3>
  569. </table4>
  570. <table5>
  571. <name>charTable </name>
  572. <numColumns>5</numColumns>
  573. <column1>
  574. <name> sNo </name>
  575. <type> tinyInt </type>
  576. </column1>
  577. <column2>
  578. <name> characterCol </name>
  579. <type> char(20) </type>
  580. </column2>
  581. <column3>
  582. <name> ncharacterCol </name>
  583. <type> nchar(20) </type>
  584. </column3>
  585. <column4>
  586. <name> varchar </name>
  587. <type> varchar(20) </type>
  588. </column4>
  589. <column5>
  590. <name> nvarchar </name>
  591. <type> nvarchar(20) </type>
  592. </column5>
  593. </table5>
  594. </tables>
  595. <values>
  596. <numTables>5</numTables>
  597. <table1>
  598. <tableName>numericTable</tableName>
  599. <numRows>4</numRows>
  600. <numCols>6</numCols>
  601. <row1>
  602. <column1> 1 </column1>
  603. <column2> -9223372036854775808 </column2>
  604. <column3> -2147483648 </column3>
  605. <column4> -32768 </column4>
  606. <column5> 0</column5>
  607. <column6> 0</column6>
  608. </row1>
  609. <row2>
  610. <column1> 2 </column1>
  611. <column2> 1244 </column2>
  612. <column3> -50 </column3>
  613. <column4> 234 </column4>
  614. <column5> 128 </column5>
  615. <column6> 0</column6>
  616. </row2>
  617. <row3>
  618. <column1> 3 </column1>
  619. <column2> 9223372036854775807 </column2>
  620. <column3> 2147483647 </column3>
  621. <column4> 32767 </column4>
  622. <column5> 255 </column5>
  623. <column6> 1</column6>
  624. </row3>
  625. <row4>
  626. <column1> 4 </column1>
  627. <column2> null </column2>
  628. <column3> null </column3>
  629. <column4> null </column4>
  630. <column5> null </column5>
  631. <column6> null </column6>
  632. </row4>
  633. <changes>
  634. <numChanges>5</numChanges>
  635. <change1>
  636. <row>1</row>
  637. <col>2</col>
  638. <value>-5678 </value>
  639. </change1>
  640. <change2>
  641. <row>1</row>
  642. <col>6</col>
  643. <value> 10 </value>
  644. </change2>
  645. <change3>
  646. <row>2</row>
  647. <col>3</col>
  648. <value>234 </value>
  649. </change3>
  650. <change4>
  651. <row>3</row>
  652. <col>5</col>
  653. <value>-345 </value>
  654. </change4>
  655. <change5>
  656. <row>3</row>
  657. <col>2</col>
  658. <value>-999 </value>
  659. </change5>
  660. </changes>
  661. </table1>
  662. <table2>
  663. <tableName> dateTimeTable</tableName>
  664. <numRows>3</numRows>
  665. <numCols>3</numCols>
  666. <row1>
  667. <column1> 1 </column1>
  668. <column2> '1/1/1753 03:04:05.234' </column2>
  669. <column3> '1/1/1970 12:24'</column3>
  670. </row1>
  671. <row2>
  672. <column1> 2 </column1>
  673. <column2> '12/31/9999 00:00:00' </column2>
  674. <column3> '6/6/2079 00:00'</column3>
  675. </row2>
  676. <row3>
  677. <column1> 3 </column1>
  678. <column2> null </column2>
  679. <column3> null </column3>
  680. </row3>
  681. </table2>
  682. <table3>
  683. <tableName> realNosTable</tableName>
  684. <numRows>6</numRows>
  685. <numCols>5</numCols>
  686. <row1>
  687. <column1> 1 </column1>
  688. <column2> -9.99E+3</column2>
  689. <column3> -99 </column3>
  690. <column4> -1.7976931348623157E+308 </column4>
  691. <column5> -3.402823466E+38 </column5>
  692. </row1>
  693. <row2>
  694. <column1> 2 </column1>
  695. <column2> -1.23E3 </column2>
  696. <column3> -12 </column3>
  697. <column4> -2.2250738585072014E-308 </column4>
  698. <column5> -3.4E-38 </column5>
  699. </row2>
  700. <row3>
  701. <column1> 3 </column1>
  702. <column2> 0 </column2>
  703. <column3> 0 </column3>
  704. <column4> 0 </column4>
  705. <column5> 0 </column5>
  706. </row3>
  707. <row4>
  708. <column1> 4 </column1>
  709. <column2> 1.2E1 </column2>
  710. <column3> 12 </column3>
  711. <column4> 2.2250738585072014E-308 </column4>
  712. <column5> 4.56E-3 </column5>
  713. </row4>
  714. <row5>
  715. <column1> 5 </column1>
  716. <column2> 9.999E3 </column2>
  717. <column3> 99 </column3>
  718. <column4> 1.7976931348623157E+308 </column4>
  719. <column5> 3.4E+38 </column5>
  720. </row5>
  721. <row6>
  722. <column1> 6 </column1>
  723. <column2> null </column2>
  724. <column3> null </column3>
  725. <column4> null </column4>
  726. <column5> null </column5>
  727. </row6>
  728. <changes>
  729. <numChanges> 1 </numChanges>
  730. <change1>
  731. <row> 6 </row>
  732. <col> 4 </col>
  733. <value> 1.2E34 </value>
  734. </change1>
  735. </changes>
  736. </table3>
  737. <table4>
  738. <tableName> moneyTable</tableName>
  739. <numRows>4</numRows>
  740. <numCols>3</numCols>
  741. <row1>
  742. <column1> 1 </column1>
  743. <column2> -922337203685477.5808 </column2>
  744. <column3> -214748.3648 </column3>
  745. </row1>
  746. <row2>
  747. <column1> 2 </column1>
  748. <column2> 5477.5808 </column2>
  749. <column3> 748.3648 </column3>
  750. </row2>
  751. <row3>
  752. <column1> 3 </column1>
  753. <column2> 922337203685477.5807 </column2>
  754. <column3> 214748.3647 </column3>
  755. </row3>
  756. <row4>
  757. <column1> 4 </column1>
  758. <column2> null </column2>
  759. <column3> null </column3>
  760. </row4>
  761. </table4>
  762. <table5>
  763. <tableName> charTable</tableName>
  764. <numRows>2</numRows>
  765. <numCols>5</numCols>
  766. <row1>
  767. <column1> 1 </column1>
  768. <column2> '12345678901234567890' </column2>
  769. <column3> 'abcdefghijklmnopqrst' </column3>
  770. <column4> 'zyxwvutsrqponmlkjihg' </column4>
  771. <column5> '12345678901234567890' </column5>
  772. </row1>
  773. <row2>
  774. <column1> 2 </column1>
  775. <column2> null </column2>
  776. <column3> null </column3>
  777. <column4> null </column4>
  778. <column5> null </column5>
  779. </row2>
  780. </table5>
  781. </values>
  782. <StoredProc>
  783. <NumStoredProc> 1 </NumStoredProc>
  784. <StoredProc1>
  785. <type> generic </type>
  786. <name> Select_{{TABLE}}_proc </name>
  787. <template>
  788. <numStmts> 1 </numStmts>
  789. <stmt1><![CDATA[
  790. create procedure Select_{{TABLE}}_proc As
  791. BEGIN
  792. Select {{COLUMNS}} from {{TABLE}};
  793. END]]>
  794. </stmt1>
  795. </template>
  796. </StoredProc1>
  797. </StoredProc>
  798. <queries>
  799. <numQueries> 5 </numQueries>
  800. <query1> Select COLUMNS from TABLE1 order by COLUMN1 </query1>
  801. <query2> Select COLUMN1,COLUMN2,COLUMN3 from TABLE2 order by COLUMN1 </query2>
  802. <query3> Select COLUMN2,COLUMN4 from TABLE3 order by COLUMN1 </query3>
  803. <query4> Select COLUMNS from TABLE4 order by COLUMN1 </query4>
  804. <query5> Select COLUMNS from TABLE5 order by COLUMN1 </query5>
  805. </queries>
  806. </mssql>
  807. <postgres>
  808. <database>
  809. <name> postgres </name>
  810. <connectionString> Server=164.99.168.144;Database=test;User Id=sudha;Password= </connectionString>
  811. <OdbcConnString>DSN=postgres-DSN;uid=sudha;pwd= </OdbcConnString>
  812. </database>
  813. <tables>
  814. <numTables> 5 </numTables>
  815. <table1>
  816. <name>numericTable </name>
  817. <numColumns> 4 </numColumns>
  818. <column1>
  819. <name> serialNo </name>
  820. <type> smallint </type>
  821. </column1>
  822. <column2>
  823. <name> small_int </name>
  824. <type> smallint </type>
  825. </column2>
  826. <column3>
  827. <name> int </name>
  828. <type> integer </type>
  829. </column3>
  830. <column4>
  831. <name> bigInteger </name>
  832. <type> bigint </type>
  833. </column4>
  834. </table1>
  835. <table2>
  836. <name>realNoTable </name>
  837. <numColumns> 5 </numColumns>
  838. <column1>
  839. <name> serialNo </name>
  840. <type> smallint </type>
  841. </column1>
  842. <column2>
  843. <name> numeric_column </name>
  844. <type> numeric(10,6) </type>
  845. </column2>
  846. <column3>
  847. <name> numeric_noscale </name>
  848. <type> decimal(10) </type>
  849. </column3>
  850. <column4>
  851. <name> realNo </name>
  852. <type> real </type>
  853. </column4>
  854. <column5>
  855. <name> doubleNo </name>
  856. <type> double precision </type>
  857. </column5>
  858. </table2>
  859. <table3>
  860. <name> charTable </name>
  861. <numColumns> 4 </numColumns>
  862. <column1>
  863. <name> serialNo </name>
  864. <type> smallint </type>
  865. </column1>
  866. <column2>
  867. <name> charColumn </name>
  868. <type> char(20) </type>
  869. </column2>
  870. <column3>
  871. <name> varcharColumn </name>
  872. <type> varchar(20) </type>
  873. </column3>
  874. <column4>
  875. <name> textColumn </name>
  876. <type> text </type>
  877. </column4>
  878. </table3>
  879. <table4>
  880. <name> dateTimeTable </name>
  881. <numColumns> 5 </numColumns>
  882. <column1>
  883. <name> serialNo </name>
  884. <type> smallint </type>
  885. </column1>
  886. <column2>
  887. <name> timestampCol </name>
  888. <type> timestamp </type>
  889. </column2>
  890. <column3>
  891. <name> intervalCol </name>
  892. <type> interval </type>
  893. </column3>
  894. <column4>
  895. <name> dateCol </name>
  896. <type> date </type>
  897. </column4>
  898. <column5>
  899. <name> timeCol </name>
  900. <type> time </type>
  901. </column5>
  902. </table4>
  903. <table5>
  904. <name> booleanTable </name>
  905. <numColumns> 2 </numColumns>
  906. <column1>
  907. <name> serialNo </name>
  908. <type> smallint </type>
  909. </column1>
  910. <column2>
  911. <name> bool </name>
  912. <type> boolean </type>
  913. </column2>
  914. </table5>
  915. </tables>
  916. <values>
  917. <numTables>5</numTables>
  918. <table1>
  919. <tableName>numericTable</tableName>
  920. <numRows>4</numRows>
  921. <numCols>4</numCols>
  922. <row1>
  923. <column1> 1 </column1>
  924. <column2> -32768 </column2>
  925. <column3> -2147483648 </column3>
  926. <column4> -9223372036854775808 </column4>
  927. </row1>
  928. <row2>
  929. <column1> 2 </column1>
  930. <column2> 123 </column2>
  931. <column3> -648 </column3>
  932. <column4> 0 </column4>
  933. </row2>
  934. <row3>
  935. <column1> 3 </column1>
  936. <column2> 32767 </column2>
  937. <column3> 2147483647 </column3>
  938. <column4> 9223372036854775807 </column4>
  939. </row3>
  940. <row4>
  941. <column1> 4 </column1>
  942. <column2> null </column2>
  943. <column3> null </column3>
  944. <column4> null </column4>
  945. </row4>
  946. <changes>
  947. <numChanges> 2 </numChanges>
  948. <change1>
  949. <row> 3 </row>
  950. <col> 2 </col>
  951. <value> 2000 </value>
  952. </change1>
  953. <change2>
  954. <row> 2 </row>
  955. <col> 3 </col>
  956. <value> 2000000 </value>
  957. </change2>
  958. </changes>
  959. </table1>
  960. <table2>
  961. <tableName>realNoTable</tableName>
  962. <numRows>6</numRows>
  963. <numCols>5</numCols>
  964. <row1>
  965. <column1> 1 </column1>
  966. <column2> -9999.999999 </column2>
  967. <column3> -9999999999 </column3>
  968. <column4> -9.99999E-38 </column4>
  969. <column5> -9.999999999999999E-308 </column5>
  970. </row1>
  971. <row2>
  972. <column1> 2 </column1>
  973. <column2> -123.99 </column2>
  974. <column3> -1239 </column3>
  975. <column4> 9.99999E-38 </column4>
  976. <column5> 9.999999999999999E-308 </column5>
  977. </row2>
  978. <row3>
  979. <column1> 3 </column1>
  980. <column2> 0 </column2>
  981. <column3> 0 </column3>
  982. <column4> 0 </column4>
  983. <column5> 0 </column5>
  984. </row3>
  985. <row4>
  986. <column1> 4 </column1>
  987. <column2> 123.99 </column2>
  988. <column3> 123 </column3>
  989. <column4> -9.99999E37 </column4>
  990. <column5> -1.79769313486231E308 </column5>
  991. </row4>
  992. <row5>
  993. <column1> 5 </column1>
  994. <column2> 9999.999999 </column2>
  995. <column3> 9999999999 </column3>
  996. <column4> 9.99999E37 </column4>
  997. <column5> 1.79769313486231E308 </column5>
  998. </row5>
  999. <row6>
  1000. <column1> 6 </column1>
  1001. <column2> null </column2>
  1002. <column3> null </column3>
  1003. <column4> null </column4>
  1004. <column5> null </column5>
  1005. </row6>
  1006. </table2>
  1007. <table3>
  1008. <tableName>charTable</tableName>
  1009. <numRows>2</numRows>
  1010. <numCols>4</numCols>
  1011. <row1>
  1012. <column1> 1 </column1>
  1013. <column2> 'abcdefghijklmnopqrst' </column2>
  1014. <column3> '1234567890' </column3>
  1015. <column4> 'This is a fixed length text' </column4>
  1016. </row1>
  1017. <row2>
  1018. <column1> 2 </column1>
  1019. <column2> null </column2>
  1020. <column3> null </column3>
  1021. <column4> null </column4>
  1022. </row2>
  1023. </table3>
  1024. <table4>
  1025. <tableName>datetimeTable</tableName>
  1026. <numRows>4</numRows>
  1027. <numCols>5</numCols>
  1028. <row1>
  1029. <column1> 1 </column1>
  1030. <column2> '0001-01-01 00:00:00.000000' </column2>
  1031. <column3> '-178000000 years +4 days' </column3>
  1032. <column4> '0001-01-01' </column4>
  1033. <column5> '12:23:34' </column5>
  1034. </row1>
  1035. <row2>
  1036. <column1> 2 </column1>
  1037. <column2> '2004-10-21 11:15:23' </column2>
  1038. <column3> '7890 years 5 days 07:30' </column3>
  1039. <column4> '2004-01-12' </column4>
  1040. <column5> '00:00:00' </column5>
  1041. </row2>
  1042. <row3>
  1043. <column1> 3 </column1>
  1044. <column2> '9999-12-31 23:59:59.9999' </column2>
  1045. <column3> '178000000 years 00:19:23' </column3>
  1046. <column4> '9999-12-31' </column4>
  1047. <column5> '23:59:59' </column5>
  1048. </row3>
  1049. <row4>
  1050. <column1> 4 </column1>
  1051. <column2> null </column2>
  1052. <column3> null </column3>
  1053. <column4> null </column4>
  1054. <column5> null </column5>
  1055. </row4>
  1056. </table4>
  1057. <table5>
  1058. <tableName>booleanTable</tableName>
  1059. <numRows>3</numRows>
  1060. <numCols>2</numCols>
  1061. <row1>
  1062. <column1> 1 </column1>
  1063. <column2> TRUE </column2>
  1064. </row1>
  1065. <row2>
  1066. <column1> 2 </column1>
  1067. <column2> FALSE </column2>
  1068. </row2>
  1069. <row3>
  1070. <column1> 3 </column1>
  1071. <column2> null </column2>
  1072. </row3>
  1073. </table5>
  1074. </values>
  1075. <queries>
  1076. <numQueries> 5 </numQueries>
  1077. <query1> Select COLUMNS from TABLE1 order by COLUMN1 </query1>
  1078. <query2> Select COLUMN1,COLUMN2,COLUMN3 from TABLE2 order by COLUMN1 </query2>
  1079. <query3> Select COLUMN2,COLUMN4 from TABLE3 order by COLUMN1 </query3>
  1080. <query4> Select COLUMNS from TABLE4 order by COLUMN1 </query4>
  1081. <query5> Select COLUMNS from TABLE5 order by COLUMN1 </query5>
  1082. </queries>
  1083. </postgres>
  1084. <oracle>
  1085. <database>
  1086. <name> oracle </name>
  1087. <connectionString> Data Source=testdb.com;User Id=user9i;Password=oracle9i </connectionString>
  1088. <OdbcConnString>DSN=Oracle-DSN;uid=user9i;pwd=oracle9i </OdbcConnString>
  1089. </database>
  1090. <StoredProcExists> Y </StoredProcExists>
  1091. <tables>
  1092. <numTables> 4 </numTables>
  1093. <table1>
  1094. <name>numericTable </name>
  1095. <numColumns> 3 </numColumns>
  1096. <column1>
  1097. <name> serialNo </name>
  1098. <type> number(1)</type>
  1099. </column1>
  1100. <column2>
  1101. <name> intCol </name>
  1102. <type> number(6)</type>
  1103. </column2>
  1104. <column3>
  1105. <name> decimalCol </name>
  1106. <type> number(6, 3)</type>
  1107. </column3>
  1108. </table1>
  1109. <table2>
  1110. <name> charTable </name>
  1111. <numColumns> 5 </numColumns>
  1112. <column1>
  1113. <name> serialNo </name>
  1114. <type> number(1)</type>
  1115. </column1>
  1116. <column2>
  1117. <name> charCol </name>
  1118. <type> char(10) </type>
  1119. </column2>
  1120. <column3>
  1121. <name> ncharCol </name>
  1122. <type> nchar(10) </type>
  1123. </column3>
  1124. <column4>
  1125. <name> varcharCol </name>
  1126. <type> varchar2(10) </type>
  1127. </column4>
  1128. <column5>
  1129. <name> nvarcharCol </name>
  1130. <type> nvarchar2(10) </type>
  1131. </column5>
  1132. </table2>
  1133. <table3>
  1134. <name> RealNoTable </name>
  1135. <numColumns> 2 </numColumns>
  1136. <column1>
  1137. <name> serialNo </name>
  1138. <type> number(1)</type>
  1139. </column1>
  1140. <column2>
  1141. <name> floatCol </name>
  1142. <type> float(24) </type>
  1143. </column2>
  1144. </table3>
  1145. <table4>
  1146. <name> DateTimeTable </name>
  1147. <numColumns> 5 </numColumns>
  1148. <column1>
  1149. <name> serialNo </name>
  1150. <type> number(1)</type>
  1151. </column1>
  1152. <column2>
  1153. <name> dateCol </name>
  1154. <type> date </type>
  1155. </column2>
  1156. <column3>
  1157. <name> timestampCol </name>
  1158. <type> timestamp </type>
  1159. </column3>
  1160. <column4>
  1161. <name> Int_year </name>
  1162. <type> interval Year to month</type>
  1163. </column4>
  1164. <column5>
  1165. <name> int_day </name>
  1166. <type> interval day to second </type>
  1167. </column5>
  1168. </table4>
  1169. </tables>
  1170. <values>
  1171. <numTables>4</numTables>
  1172. <table1>
  1173. <tableName>numericTable</tableName>
  1174. <numRows>4</numRows>
  1175. <numCols>3</numCols>
  1176. <row1>
  1177. <column1> 1 </column1>
  1178. <column2> -999999 </column2>
  1179. <column3> -999.999 </column3>
  1180. </row1>
  1181. <row2>
  1182. <column1> 2 </column1>
  1183. <column2> 1000 </column2>
  1184. <column3> 234 </column3>
  1185. </row2>
  1186. <row3>
  1187. <column1> 3 </column1>
  1188. <column2> 999999 </column2>
  1189. <column3> 999.999 </column3>
  1190. </row3>
  1191. <row4>
  1192. <column1> 4 </column1>
  1193. <column2> null </column2>
  1194. <column3> null </column3>
  1195. </row4>
  1196. </table1>
  1197. <table2>
  1198. <tableName>charTable</tableName>
  1199. <numRows>2</numRows>
  1200. <numCols>5</numCols>
  1201. <row1>
  1202. <column1> 1 </column1>
  1203. <column2> '0123456789' </column2>
  1204. <column3> 'abcdefghij' </column3>
  1205. <column4> '0123456789' </column4>
  1206. <column5> 'abcdefghij' </column5>
  1207. </row1>
  1208. <row2>
  1209. <column1> 2 </column1>
  1210. <column2> null </column2>
  1211. <column3> null </column3>
  1212. <column4> null </column4>
  1213. <column5> null </column5>
  1214. </row2>
  1215. </table2>
  1216. <table3>
  1217. <tableName>RealNoTable</tableName>
  1218. <numRows>6</numRows>
  1219. <numCols>2</numCols>
  1220. <row1>
  1221. <column1> 1 </column1>
  1222. <column2> 9.9999999E125 </column2>
  1223. </row1>
  1224. <row2>
  1225. <column1> 2 </column1>
  1226. <column2> -9.999999E-126 </column2>
  1227. </row2>
  1228. <row3>
  1229. <column1> 3 </column1>
  1230. <column2> 1.23E-15 </column2>
  1231. </row3>
  1232. <row4>
  1233. <column1> 4 </column1>
  1234. <column2> -9.999999E-126 </column2>
  1235. </row4>
  1236. <row5>
  1237. <column1> 5 </column1>
  1238. <column2> 9.9999999E125 </column2>
  1239. </row5>
  1240. <row6>
  1241. <column1> 6 </column1>
  1242. <column2> null </column2>
  1243. </row6>
  1244. </table3>
  1245. <table4>
  1246. <tableName>DateTimeTable</tableName>
  1247. <numRows>3</numRows>
  1248. <numCols>5</numCols>
  1249. <row1>
  1250. <column1> 1 </column1>
  1251. <column2> to_date('0001-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss') </column2>
  1252. <column3> TIMESTAMP'0001-01-01 00:00:00' </column3>
  1253. <column4> '-99-11' </column4>
  1254. <column5> '-99 23:59:59' </column5>
  1255. </row1>
  1256. <row2>
  1257. <column1> 2 </column1>
  1258. <column2> to_date('2004-11-23 12:34:45', 'yyyy-mm-dd hh24:mi:ss') </column2>
  1259. <column3> TIMESTAMP'2004-11-23 12:34:45' </column3>
  1260. <column4> '34-5' </column4>
  1261. <column5> '-34 20:50:00' </column5>
  1262. </row2>
  1263. <row3>
  1264. <column1> 3 </column1>
  1265. <column2> to_date('9999-12-31 23:59:59', 'yyyy-mm-dd hh24:mi:ss') </column2>
  1266. <column3> TIMESTAMP'9999-12-31 23:59:59' </column3>
  1267. <column4> '99-11' </column4>
  1268. <column5> '00 23:59:59' </column5>
  1269. </row3>
  1270. </table4>
  1271. </values>
  1272. <StoredProc>
  1273. <NumStoredProc> 1 </NumStoredProc>
  1274. <StoredProc1>
  1275. <type> generic </type>
  1276. <name> {{TABLE}}_pkg.Select_{{TABLE}}_data</name>
  1277. <template>
  1278. <numStmts> 2 </numStmts>
  1279. <stmt1><![CDATA[
  1280. create or replace package {{TABLE}}_pkg As
  1281. type {{TABLE}}Cur is ref cursor return {{TABLE}}%rowtype;
  1282. procedure Select{{TABLE}}Data (ref_cur out {{TABLE}}Cur);
  1283. END {{TABLE}}_pkg;]]>
  1284. </stmt1>
  1285. <stmt2><![CDATA[
  1286. create or replace package body {{TABLE}}_pkg As
  1287. procedure Select{{TABLE}}Data ( ref_cur out {{TABLE}}Cur) is
  1288. BEGIN
  1289. open ref_cur for select {{COLUMNS}} from {{TABLE}} order by {{COLUMN_1}};
  1290. End Select{{TABLE}}Data;
  1291. END {{TABLE}}_pkg;]]></stmt2>
  1292. </template>
  1293. </StoredProc1>
  1294. </StoredProc>
  1295. <queries>
  1296. <numQueries> 4 </numQueries>
  1297. <query1> Select COLUMNS from TABLE1 order by COLUMN1 </query1>
  1298. <query2> Select COLUMN1,COLUMN2,COLUMN3 from TABLE2 order by COLUMN1 </query2>
  1299. <query3> Select COLUMNS from TABLE3 order by COLUMN1 </query3>
  1300. <query4> Select COLUMNS from TABLE4 order by COLUMN1 </query4>
  1301. </queries>
  1302. </oracle>
  1303. </configuration>