Advertisement

1 - 10 of 182 containing alltags:("ntext") (0 seconds)
Here's the stored proc: (Body is the ntext field) CREATE Procedure usp_GetMessage (       @MessageID int,           @Subject varchar(255) output,       @Body ntext output,       @Deliver char(12) output,       @...
Zones: VB DBDate Answered: 01/25/2000 Grade: A Views: 0
what is the equavelnt text/ntext sql data type on ado constants on adovbs.inc //////////////////////////////////////////////////// '---- DataTypeEnum Values ---- Const adEmpty = 0 Const adTin...
Zones: ASPDate Answered: 07/23/2002 Grade: A Views: 5
I have two tables. The first is content, the second is contentversions. Content contains current content, contentversions contains previous versions of content, and is linked one-to-many. One piece...
Zones: MS SQL ServerDate Answered: 07/04/2004 Grade: A Views: 0
Hello, I want to draw the content of a ntext field from an SQL Server database into a textarea. It works perfect when using a memo field in Access, but here with SQL Server, the textarea rema...
Zones: ASPDate Answered: 08/05/2003 Grade: A Views: 0
Hello, this query returns empty fields for 'content'. It was an 'nvarchar(4000)' without problems, but had to make it a 'ntext(16)' because the available text space was not long enough ... Se...
Zones: ASPDate Answered: 10/04/2004 Grade: B Views: 0
I'm storing long text strings in an ntext field in my db and would like to be able to draw sections of text without pulling it all.  I would like to add markers in the text, like say {section1} som...
Zones: DatabasesDate Answered: 03/24/2005 Grade: A Views: 0
I have an ntext field that I am trying to update. Some of the records have previous data in that column and some of them are NULL. When I use the sql below I get the following error. "[Macromed...
Zones: MS SQL ServerDate Answered: 08/15/2005 Grade: A Views: 0
       public void ProjectResponseandRespondentToDB(DataRow dr, int intId)         {             const string CONN_STRING = "Initial Catalog=RG_Admin;Data Source=10.1.1.99;user id=sa;password=Pa...
Zones: C#Date Answered: 09/26/2006 Grade: A Views: 0
We have to a stored procedure, which can perform searches inside nchar, nvarchar, ... except ntext. It uses "LIKE" for string matching. I want to extend it, so it supports ntext... I know that ...
Zones: MS SQL ServerDate Answered: 11/02/2006 Grade: A Views: 0
Hello, Is it possible to define a variable of type ntext in stored procedure? I have a table which contains one column (ntext) for mail body. When I sent that mail body to any person from sto...
Zones: MS SQL ServerDate Answered: 02/13/2007 Grade: C Views: 0