Chris__T
Posts: 339
|
| Posted: 03/24/2008, 12:37 PM |
|
Can you use openoffice.org db files in Code Charge Studio?
|
 |
 |
Oper
Posts: 1195
|
| Posted: 03/24/2008, 6:09 PM |
|
i think you could use ADO and OLEDB
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
Stanj
Posts: 166
|
| Posted: 03/25/2008, 2:12 AM |
|
It uses ODBC and easily hooks into MySQL and Access so there is a very good chance it will work.
There is a good MySQL Connector that I've used and it turns Base, the OO desktop database application, into a pretty effective Access beater. Easy to use office application front end and the power of MySQL....and all free.
_________________
Stan
St Petersburg Russia |
 |
 |
Chris__T
Posts: 339
|
| Posted: 03/25/2008, 6:29 AM |
|
Yeah, I would have thought it could ,but I can't seem to get a connection going. Maybe I don't have the drivers installed. Is there a way to add more drivers to CCS?
|
 |
 |
Oper
Posts: 1195
|
| Posted: 03/25/2008, 3:33 PM |
|
this using ADODB / OLEDB
work with access try with open database
<%
Set CN = Server.CreateObject("ADODB.connection")
CN.Provider = "Microsoft.Jet.OLEDB.4.0"
CN.ConnectionString = Server.MapPath("base.odb")
%>
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |