Viewing 5 posts - 1 through 5 (of 5 total)
Here the solution,
Dynamic SQL, meaning, it can be huge. the joins or inside the WHERE clause you have to use NULL saying "AND ( attribute IN ( 'your values'...
March 10, 2008 at 1:44 pm
I found the problem. In a where condition, I am passing the string "NULL" as follow:
AND IN ( 'N', 'n', NULL)
if I remove the NULL then everything...
March 10, 2008 at 12:31 pm
event though your dynamic sql return different columns every time, you should include primary/foreigner keys in your result set or temp table otherwise how will you link that information to...
March 6, 2008 at 3:19 pm
Imaging two tables "codes" and "reports" where codes is a common table having descriptions and reports has a column having a code and you want to display the description of...
March 6, 2008 at 2:49 pm
I am using Sybase 12.5, XP, VS .NET 2005, using DAAB or normal DATA.* namespace. Connection Strings are below.
Inside your app.config or web.config; connectionStrings section:
*ASE ADO*
"Data Source=IpAddress;Port=PortNumber;UID=UserId;password=Password;Database=DatabaseName;"
*OLE DB*
"Provider=Sybase.ASEOLEDBProvider.2;Data Source=FileName.IDS;password=Password;database=DatabaseName;uid=UserId;"
*ODBC*
"Driver={SYBASE...
March 6, 2008 at 1:32 pm
Viewing 5 posts - 1 through 5 (of 5 total)