-
1. Re: cf builder 2.0.1 has MS SQL 2008 connection error
swmyers Feb 8, 2013 11:48 AM (in response to ocoguzxp)I am so glad to see someone else has this very same issue. I really would like to use the extension as it works perfectly with access datasources but I cannot get it to function with SQL 2008 R2.
I will try with sql 2012 and see if that is of any help with this problem.
Terrence, where are you??? Could you respond please? We would all appreciate it very much!!
-
2. Re: cf builder 2.0.1 has MS SQL 2008 connection error
martypaz Sep 16, 2014 6:09 PM (in response to ocoguzxp)FIX FOR SQL SERVER ONLY!!!
I wrote this simple script to get the names of all the system views in SQL server - I'm sure M$ add new tables and as Terry appears to no longer develop apptacular he won;t be aware of the new views. Simply run the script and copy and paste the list of views it creates. Instructions will be displayed after running the script........
<cfdbinfo name="dbi" datasource="yourdatasource" type="Tables">
<cfquery name="dbi" dbtype="query" >
select * from dbi where table_type='VIEW'
</cfquery>
<cfoutput>
Copy the quoted values below and paste them at the bottom of /handlers/cfc/db/datasource.cfc just below the last excludedTableList (About line 455)<br><br>
excludedTableList = excludedTableList & ",#replace(listQualify(valuelist(dbi.table_name), "'"), ",'", ", '", "all")#";
</cfoutput>Hope it helps
