| Thread | Last Post | Replies |
|
| Eclipse RDS Connection Troubleshooting.... | 31 Dec 2007 12:39 GMT | 2 |
Anyone out there able to provide assistance? I created the RDS configuration, but it tells me Eclipse cannot connect.... CF8 debugging turned on; port, server, and admin pw
|
| cfqueryparam in cfset | 31 Dec 2007 11:33 GMT | 14 |
I do a lot of things like like: <cfset selectStatement="select id, someText, someValue from myTable "> <cfset whereStatement= " where id=#form.getId# "> Then
|
| cfstoredproc - Numeric Overflow Error - CF8 | 28 Dec 2007 20:05 GMT | 4 |
I recently upgraded to CF8 and have started having problems with cfstoredproc. Here is the code: <cfstoredproc datasource="#request.myDSN#" procedure="dbo.p_online_password.get_account" >
|
| Concatenating strings to form an INSERT INTO | 25 Dec 2007 15:58 GMT | 10 |
I am trying to build an insert statement by concatenating strings. Basically, this is what I'm doing: <cfset string1 = "INSERT INTO #tablename# ("> <cfset string1 = string1 & #colname#>
|
| input data into db, while retrieving id | 20 Dec 2007 02:45 GMT | 6 |
i have a form that is inputting form data into my sql db...that works fine. in the same script, a confirmation email sends information of from this to an administrator. however, all this info that is sent is being taken from the form, not the db. the code is INSERTing the data ...
|
| ODBC works, but not CF (TNS could not resolve the connect identifier specified) | 18 Dec 2007 19:30 GMT | 1 |
I am getting an error trying to connnect CF to Oracle via ODBC on our server: "TNS could not resolve the connect identifier specified". The thing is, the ODBC connection *works fine* for other apps, such as MS-Access. It just does not work for ColdFusion MX 7 on Oracle (and CF
|
| HTML Table Friendly SQL queries | 18 Dec 2007 17:20 GMT | 1 |
I have a set of data that I want to display in a HTML page. My problem is that I want to basically drop my data into a set of available buckets without knowing what actual data exists. An example, dbTable1
|
| CF8 ODBC performance issues w/ SQL 2K5 | 17 Dec 2007 21:30 GMT | 7 |
Problem: A basic "select *" query returning 5 rows is taking a little over 5000ms. Platform: Vista Business, CF8 Developer, MS SQL 2K5 Developer SP2, ODBC Socket using trusted connection
|
| Problem connnecting to Excel via ODBC | 17 Dec 2007 14:47 GMT | 1 |
# Connection verification failed for data source: Test java.sql.SQLException: [Macromedia][SequeLink JDBC Driver][SequeLink Server]Unable to retrieve error message from backend ODBC Driver. The root cause was that: java.sql.SQLException: [Macromedia][SequeLink JDBC
|
| Problem connnecting to Excel via ODBC | 17 Dec 2007 14:33 GMT | 1 |
I created an ODBC connection to connect to an Excel Workbook which I can use as database. In CF Admin -CF 7 (Datasources), I put "DSExcel" as datasource name and "ODBC Socket" as Driver. But am getting the following error when trying to verify the
|
| SQL Reverse "Order By" | 16 Dec 2007 20:13 GMT | 5 |
Ok I'm trying to order by a column which consists of numbers, which works, however, I want the high numbers at the top not the bottom. Now I know DESC works for alphabetical entries, but what works for numbers? This has to be simple. Thanks!
|
| No value given for one or more required parameters | 14 Dec 2007 18:58 GMT | 2 |
I am getting this error when a form is submited from my site....Basically the user answer some questions, and then after the submit button is pressed, the script is supposed to check the user answers with the answers I have on the Database, but when the script is ran, it gives me ...
|
| First time writting a 2 table DB update app. Need help please | 14 Dec 2007 18:22 GMT | 26 |
I am trying to write a small app that is making use of 2 tables in a DB. I wanted to break this down into a few steps, starting with making step 1, and I kind of need help. I am not sure how to write this. I am posting what I have so far and I will comment out what I can't figure ...
|
| Syntax problem -- variables and writing to db | 14 Dec 2007 03:10 GMT | 3 |
I'm having a bear of a time tracking this down, and I suspect it's something easy and syntactical, but it's making me insane. I'm renaming/moving files to a different directory, setting variables based on the new filename and a friendly file title, and then I want to write those ...
|
| Inserting multiple records | 13 Dec 2007 21:35 GMT | 3 |
I'm querying purchase order information from an AS400 server, and saving it to a SQL database in another location. The header information and the individual lines come from separate tables, and will save to separate tables (yay normal form!).
|