Rhino.ETL is db agnostic. as long as there is an ado.net implementation it will work. and you can always fall back on the generic ODBC connection. as for mapping to a datatable: yes you can do that, you will need to create a new implement of AbstractOperation. How to implement this can be done a number of ways. it depends on what your requirements are. you could build the table based on the fields of the row. or you could explicitly define the datatable columns and only load those values from the row, ignoring any others. do you want to throw an exception if the value does not exist in row, or the column does not exist on the table. etc.
There are some excellent resources on the website: http://hibernatingrhinos.com/oss/rhino-etl. On Tuesday, November 6, 2012 1:52:12 AM UTC-5, Dev wrote: > > I was choose to integrate Rhino ETL tool in my application. > > In my application i am using various databases like sql server, oracle, > mysql, sybase, Informix, db2, ingress. Rhino will support all these > databases or not. > > And also can i migrate ienumerable< row > to datatable, if possible > how(Looking for generic method) > > Guide me to integrate the etl. > > Thanks! > -- You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" group. To view this discussion on the web visit https://groups.google.com/d/msg/rhino-tools-dev/-/Dp83uDD4NuwJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rhino-tools-dev?hl=en.
