Ask a Question related to Coldfusion Database Access, Design and Development.
-
John-liai #1
JDBC MSSQL Driver Losing Tables?
So, I had and developed an app fine with CFMX 6.1 running Apache 2. I moved it
to a different server and everything pretty much works fine in all the other
apps. Today, I went in to test my app and it can't find a table. Mind you, not
any table just one table. If I modify it to database.owner.table it works fine.
I have had this problem pop up before with CF where it seems to just stop
finding certain random tables in a database unless you explicity say where they
are. Any Ideas? The assist table is the one it couldn't find. Giving me a
'Invalid Object' error. The datasource is setup to go only to that database and
its username can see and play in that database just fine as the dbowner. Is
this just a bug with CF?
Before:
<CFQUERY name="qPeople_Submitted_Current" datasource="TS">
select * from ts.dbo.ts_hdr where
approval_status = 's'
and (jobsupervisor_eid='#get_supervisor(form.eid)#'
or jobsupervisor_eid in (select eid from assist where
ass_eid='#get_supervisor(form.eid)#'))
and period='#form.period#'
ORDER by jobsupervisor_eid, eid, period;
</CFQUERY>
After:
<CFQUERY name="qPeople_Submitted_Current" datasource="TS">
select * from ts.dbo.ts_hdr where
approval_status = 's'
and (jobsupervisor_eid='#get_supervisor(form.eid)#'
or jobsupervisor_eid in (select eid from ts.dbo.assist where
ass_eid='#get_supervisor(form.eid)#'))
and period='#form.period#'
ORDER by jobsupervisor_eid, eid, period;
</CFQUERY>
John-liai Guest
-
MSSQL JDBC driver bug?
CFMX 7,0,1,116466 hf701-60212.jar hotfix MSSQL 2000 sp4 Win XP Pro I'm trying to enter a value of 4.25 into a money type column using... -
Still bad driver for JDBC / ODBC
Hello Since Oct 05 there is version 3.5 available in the package macromedia_drivers.jar and still we got the error 'no more data available to... -
JDBC Driver Issue
It is always highly worrying when the solution to a problem involves the blunderbus. In this case: windows 2003 server sp1 / MX7 + updates (02,... -
Problem with mssql driver
Hi Guillaume! On Sun, 24 Aug 2003 10:38:30 +0200, "Guillaume" <nospam_guillaume.rouchon@free.fr> wrote: What is the output of mssql_error()... -
DB2 JDBC Driver
What should I use for the DB2 JDBC driver form JDBC SPs? I'm using "DriverManager.getConnection("jdbc:default:connection");" at the moment. Is...



Reply With Quote

