tags:

views:

54

answers:

2

Is there a way for DBI to connect to a RedBrick database? I don't see a driver anywhere, and there is very little discussion of this.

Thanks

+1  A: 

While I'm not familiar with or has even heard of RedBrick before, as long as it "fits" the DBI API, you should be able to write your own driver for it.

Take a look at DBI::DBD on how to do that.

Mikael S
+7  A: 

RedBrick supports ODBC, so you should be able to use the DBI ODBC driver.

rjh
Hmm, good point. I guess I was focused on a dedicated driver but I suppose a generic one will work. Thanks.
Scott