Click here to Skip to main content
16,005,206 members
Home / Discussions / Database
   

Database

 
GeneralRe: Access Front End, SQL Back End and Record Locking Pin
Paul Watson31-Jan-03 6:47
sitebuilderPaul Watson31-Jan-03 6:47 
Generalsearching a dataset Pin
Sean Cull26-Jan-03 13:31
Sean Cull26-Jan-03 13:31 
GeneralRe: searching a dataset Pin
Rickard Andersson2026-Jan-03 20:56
Rickard Andersson2026-Jan-03 20:56 
QuestionHow many records in a table? Pin
Rickard Andersson2026-Jan-03 4:07
Rickard Andersson2026-Jan-03 4:07 
AnswerRe: How many records in a table? Pin
leppie26-Jan-03 4:11
leppie26-Jan-03 4:11 
GeneralRe: How many records in a table? Pin
Rickard Andersson2026-Jan-03 4:23
Rickard Andersson2026-Jan-03 4:23 
GeneralRe: How many records in a table? Pin
Rickard Andersson2026-Jan-03 7:43
Rickard Andersson2026-Jan-03 7:43 
GeneralRe: How many records in a table? Pin
leppie26-Jan-03 8:56
leppie26-Jan-03 8:56 
public static int GetRecordsInTable(string table, SqlConnection con)
{
  SqlCommand cmd = new SqlCommand(
    String.Format("SELECT COUNT(*) AS X FROM [{0}]", table), con);
  con.Open();
  object r = cmd.ExecuteScalar();
  con.Close();
  return (int) r; //oops missed the cast
}

Smile | :)

Who is this miscrosoft, and what devilish plans have they for us?
GeneralRe: How many records in a table? Pin
Rickard Andersson2026-Jan-03 9:06
Rickard Andersson2026-Jan-03 9:06 
GeneralRe: Last Record? Pin
leppie26-Jan-03 4:15
leppie26-Jan-03 4:15 
GeneralLogging from SProc.. Pin
Ray Cassick25-Jan-03 18:23
Ray Cassick25-Jan-03 18:23 
General[mySQL] Visit statistics Pin
Luca Leonardo Scorcia24-Jan-03 22:53
professionalLuca Leonardo Scorcia24-Jan-03 22:53 
GeneralRe: [mySQL] Visit statistics Pin
Bernhard Hofmann31-Jan-03 1:36
Bernhard Hofmann31-Jan-03 1:36 
GeneralRe: [mySQL] Visit statistics Pin
Luca Leonardo Scorcia9-Feb-03 7:39
professionalLuca Leonardo Scorcia9-Feb-03 7:39 
GeneralDoes Table Exist Pin
Errol24-Jan-03 10:24
Errol24-Jan-03 10:24 
GeneralRe: Does Table Exist Pin
Heath Stewart26-Jan-03 5:26
protectorHeath Stewart26-Jan-03 5:26 
GeneralConnect to a MySQL database Pin
Steve L.24-Jan-03 10:03
Steve L.24-Jan-03 10:03 
GeneralTable Columns Pin
act_x23-Jan-03 10:37
act_x23-Jan-03 10:37 
GeneralRe: accessing dbase-tables Pin
Anonymous22-Jan-03 22:25
Anonymous22-Jan-03 22:25 
GeneralRe: accessing dbase-tables Pin
stefan b23-Jan-03 1:12
stefan b23-Jan-03 1:12 
Generalneed help! SQL + ASP Pin
Sreejit22-Jan-03 3:37
Sreejit22-Jan-03 3:37 
GeneralRe: need help! SQL + ASP Pin
Mauricio Ritter22-Jan-03 3:51
Mauricio Ritter22-Jan-03 3:51 
GeneralRe: need help! SQL + ASP Pin
Sreejit22-Jan-03 23:15
Sreejit22-Jan-03 23:15 
GeneralPassing Column Names in Stored Procedures. Pin
Pradhip21-Jan-03 8:45
Pradhip21-Jan-03 8:45 
GeneralRe: Passing Column Names in Stored Procedures. Pin
SimonS21-Jan-03 21:25
SimonS21-Jan-03 21:25 

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.