У нас вы можете посмотреть бесплатно BluePrism - Connect to Oracle DB Using OLEDB || Reality & Useful или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Today we will discuss about How to connect to Oracle database and fetch employees list using Bot in Blueprism --------------------------------------------------------- Let me create a Process and open it Now the Process is created. Using OLEDB VBO will connect to Oracle database 1. Check in your system database is existed or not. Let me check once Here is my Oracle XE database browser window I connect to HR schema, because My employee data is existed here select * from employees Here the query to retrive employees data. 2. Drag the Action stage into the process and choose the Data - OLEDB and choose Set Connection We have three parameters to pass 1. Database - Here I have the database details let me show you how the structure is: (DESCRIPTION=(CID=GTU_APP)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))(CONNECT_DATA=(SID=XE)(SERVER=DEDICATED))); User Id=hr;Password=hr; Here, (HOST=localhost) is refered to localmachine (PORT=1521) port for your oracle database (SID=XE) name of the database User Id=hr;Password=hr - username and password for HR Schema provide this whole content in double quotes 2. Second parameter is password, as we already mentioned the password in first parameter. We just simply skip it. 3. Third parameter is Provider For Oracle database the provider is : OraOLEDB.Oracle Mention in double quotes 4. Database connection establised. 5. Now open the connection to access data 6. Query the data to retrive from database For this use Get Collection 7. Create the ouput varible there itself 8. Finally close connection 9. Link All the stages and run it 10. Here you can see employees data