NeXTensio Forum :: Recordset returns blank column
This thread was displayed: 186 times
Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.
For more information about the affected products visit: www.interaktonline.com/Support/
Rob Hussey
11-06-2006 20:18:02 GMT +2
|
I'm using the insert/update transaction to update a very long text description.
The problem is that the recordset created by the transaction will not display a particular table column im using even though there is valid data within the column.
The table column is in MS SQL and is set as "Text" rather than "Varchar" as the column usually requires more than 8000 characters. However, the transaction only seems to display column if it is set as Varchar. Is there a way around this via either the transaction or changing the datatype of the database column?
Im using ASP VB on a MS SQL database.
Many Thanks
Rob.
|
|
|
Razvan Racasanu[InterAKT]
11-08-2006 14:18:55 GMT +2
|
Hello,
There is a bug in the MSSQL driver regarding TEXT fields. Try editing your connection file and replace the connection string with this one:
"Provider=sqloledb;Data Source=serverName;Initial Catalog=DBName;User Id=userName;Password=password"
where you should replace serverName, DBName, userName and password with their actual values. After this, the text areas should be correctly prefilled.
Regards,
Razvan RACASANU
|
|
|
Chris Brown
10-30-2007 15:30:31 GMT +2
|
Hi,
Thanks for this. How do I know what my servername is?
I am currently using the following string, but have obvisouly changed the passwords :-)
MM_pushproperty01_STRING = "dsn=romans_pushproperty01;uid=sa;pwd=PASSWORD;"
So I modified the string to this, but it does not work:
MM_pushproperty01_STRING = "Provider=sqloledb;Data Source=romans_pushproperty01;Initial Catalog=pushproperty01;User Id=sa;Password=PASSWORD;"
Can you help?
Thanks,
Chris.
|
|
|
Rob Hussey
10-30-2007 23:16:00 GMT +2
|
The string your using looks correct to me, just make sure your using the correct server name, username and password.
I use a MS SQL Server hosted by a company called Hostway, where the server name looks like the following.
Data Source=wdb1001.lon.gb.securedata.net;
HTH
Rob
|
|
|
Chris Brown
10-31-2007 13:54:27 GMT +2
|
thanks for the reply.
I wonder if the data source is the server IP address maybe? I assumed it was the DSN name, but yours doesn't look like that.
What do you think?
Thanks.
|
|
|
Rob Hussey
11-01-2007 17:11:10 GMT +2
|
I would of thought that the servers IP would also work.
However if you are using a commerical host for the database, just send them an email requesting all the information you require.
Rob
|
|
|