Click here to Skip to main content
15,908,445 members
Home / Discussions / Database
   

Database

 
GeneralRe: sp with temptables doesnt work in crystal reports Pin
WoutL8-Jun-05 20:58
WoutL8-Jun-05 20:58 
GeneralRe: sp with temptables doesnt work in crystal reports Pin
Geethalakshmi8-Jun-05 21:15
Geethalakshmi8-Jun-05 21:15 
Generalsecurity in SQL server Pin
daneshmand7-Jun-05 23:11
daneshmand7-Jun-05 23:11 
GeneralRe: security in SQL server Pin
Colin Angus Mackay8-Jun-05 0:13
Colin Angus Mackay8-Jun-05 0:13 
Generalweb service based Pin
ahmad mostafa7-Jun-05 22:43
ahmad mostafa7-Jun-05 22:43 
GeneralRe: web service based Pin
Colin Angus Mackay8-Jun-05 0:22
Colin Angus Mackay8-Jun-05 0:22 
GeneralRe: web service based Pin
ahmad mostafa8-Jun-05 0:30
ahmad mostafa8-Jun-05 0:30 
GeneralRe: web service based Pin
Colin Angus Mackay8-Jun-05 1:08
Colin Angus Mackay8-Jun-05 1:08 
ahmad mostafa wrote:
i know that

Okay - but your original post indicated that you wanted to write a web application in SQL.

ahmad mostafa wrote:
what is the best code which will be combatable with the SQL

I'm assuming .NET code since you still haven't said the technology that will be linking to the SQL Server.

SqlConnection someConnection = new SqlConnection("connectionString");
SqlCommand someCommand = new SqlCommand("SQL Command Text", someConnection);
SqlDataReader reader = someCommand.ExecuteReader(); 
// Or someCommand.ExecuteNonQuery() if you don't have a result set
while(reader.Read())
{
    // Do stuff with each row here.
}


Does this help? If not, then you need to elaborate on your question.


My: Blog | Photos
WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More


Generalamount of record can entered in each record Pin
daneshmand7-Jun-05 22:35
daneshmand7-Jun-05 22:35 
GeneralRe: amount of record can entered in each record Pin
Colin Angus Mackay8-Jun-05 0:20
Colin Angus Mackay8-Jun-05 0:20 
GeneralError when install sql server sp4 Pin
Mekong River7-Jun-05 12:52
Mekong River7-Jun-05 12:52 
GeneralRe: Error when install sql server sp4 Pin
Vasudevan Deepak Kumar11-Jun-05 2:59
Vasudevan Deepak Kumar11-Jun-05 2:59 
GeneralRe: Error when install sql server sp4 Pin
Mekong River11-Jun-05 5:46
Mekong River11-Jun-05 5:46 
GeneralSQL Server 2005: CREATE ASSEMBLY : Error 6218 Pin
Duncan Edwards Jones7-Jun-05 10:43
professionalDuncan Edwards Jones7-Jun-05 10:43 
GeneralRelation Between Databases Pin
Majid Shahabfar7-Jun-05 3:00
Majid Shahabfar7-Jun-05 3:00 
Generalprimary key fields Pin
Pothirajan C7-Jun-05 2:36
Pothirajan C7-Jun-05 2:36 
GeneralRe: primary key fields Pin
Colin Angus Mackay8-Jun-05 1:17
Colin Angus Mackay8-Jun-05 1:17 
QuestionSql Query I think using Roll up or Cube or grouping or any other way??????? Pin
7-Jun-05 1:07
suss7-Jun-05 1:07 
Generalmulti user program Pin
pirogramci6-Jun-05 23:57
pirogramci6-Jun-05 23:57 
GeneralRe: multi user program Pin
Colin Angus Mackay8-Jun-05 0:26
Colin Angus Mackay8-Jun-05 0:26 
GeneralDROP Column: Permission denied Pin
Seraphin6-Jun-05 23:56
Seraphin6-Jun-05 23:56 
Generalwhats wrong with this function Pin
Anonymous6-Jun-05 21:08
Anonymous6-Jun-05 21:08 
GeneralRe: whats wrong with this function Pin
Colin Angus Mackay6-Jun-05 21:24
Colin Angus Mackay6-Jun-05 21:24 
GeneralRe: whats wrong with this function Pin
Anonymous7-Jun-05 2:44
Anonymous7-Jun-05 2:44 
GeneralOleDbDataAdapter Vs ExecuteNonQuery Pin
myNameIsRon6-Jun-05 18:22
myNameIsRon6-Jun-05 18:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.