ContributionsMost RecentMost LikesSolutionsGetting DB result for Bulgarian Cyrilic in testComplete Hello to everyone, i have following problem. Im using ADO.CreateADOConnection() apporoach to getting results from oracle DB , via ODBC connections , created in OS. But when i want to get text stored in DB as following (BLG cyrilic): Райфайзенбанк Ви информира, че може да получите новата си карта I got this : ¿¿¿¿¿¿¿¿¿¿¿¿¿ ¿¿ ¿¿¿¿¿¿¿¿¿, ¿¿ ¿¿¿¿ ¿¿ ¿¿¿¿¿¿¿¿ ¿¿¿¿¿¿ ¿¿ ¿¿¿¿¿ In for example SQL developer result is fine. Here is my "dummy" code for getting results: var sql = "select text from notification_text where lang = 'BLC'" var aCon = ADO.CreateADOConnection() aCon.ConnectionString = 'Data Source=ODBC_DB_NAME;Password=psswd' aCon.LoginPrompt = false aCon.Open() var rSet = aCon.Execute_(sql) var result = rSet.Fields.Item(0).Value Log.Message(result) THX for help... SolvedResults Summarization Hi , exists some tool for test results summarization? For example i want to have report from last 10 runs. How manny runs was PASSED, FAILED. Or summarization for particular TestCase how many time that particular case was PASSED, FAILED etc. I have TestSuites which are running every night via Jenkins and i would like to export these kind of data. Thanks ! Send parameters from Jenkins to TestComplete I am missing functionality to pass parameters from Jenkins to Testcomplete in command line. Re: TestComplete 'Jenkins Job' with parameters Hi Tanya, big thanks to you it works ! Before i tried to call params with %ParamName% , that was the Problem. A have maybe another question: Is somehow possible to send params to TestComplete i mean in command line way (for late processing in TestComplete with 'BuildIn' class ) ? For example: 'TestName' param i will use in TestComplete Test build step but others (EnvName, BrowserName) i want only send to TestComplete in command line. Is that possible ? I will be very thanksfull if this is somehow possible. TestComplete 'Jenkins Job' with parameters Hi all, is somehow possible to run Jenkins 'Test Complete test' job but with parameters ? When i configure this kind of job with parameters (e.g. ENV, BROWSER or TEST_NAME, etc) these are not sent to testcomplete / testexecute. How are you solving this situation ? Thanks. Solved