Click here to Skip to main content
15,892,059 members
Home / Discussions / Database
   

Database

 
GeneralRe: Web Apps only have 1 user Pin
Enver Maroshi26-Jun-09 7:33
Enver Maroshi26-Jun-09 7:33 
GeneralRe: Web Apps only have 1 user Pin
softwarejaeger26-Jun-09 7:49
softwarejaeger26-Jun-09 7:49 
GeneralRe: Web Apps only have 1 user Pin
softwarejaeger26-Jun-09 8:21
softwarejaeger26-Jun-09 8:21 
GeneralRe: XML, Serialization, Object Oriented Pin
Enver Maroshi26-Jun-09 21:09
Enver Maroshi26-Jun-09 21:09 
AnswerRe: Develop own small database-system Pin
David Skelly28-Jun-09 23:01
David Skelly28-Jun-09 23:01 
AnswerRe: Develop own small database-system Pin
smcnulty200029-Jun-09 21:30
smcnulty200029-Jun-09 21:30 
QuestionOut of range exception when using spaces to SQL? [modified] Pin
cdietschrun26-Jun-09 4:02
cdietschrun26-Jun-09 4:02 
AnswerRe: Out of range exception when using spaces to SQL? Pin
Niladri_Biswas26-Jun-09 5:49
Niladri_Biswas26-Jun-09 5:49 
I guess the error is coming while the control reaches this line

ret &= "<td><span style=""color:#a9a9a9"">" & CheckForNullVal(dt.Rows(0).Item("lastchange")) & "</span></td>"


Just check the count of your datatable, something like this(the code is in c#)

if(dt != null)
{
  if(dt.Rows.Count > 0)
  {

    // your code [ CheckForNullVal(dt.Rows(0).Item("lastchange")) ]
  }

}


N.B.~ I don't know VB.net, henceforth presented the code in C#
Hope this helps
Smile | :)

Niladri Biswas

QuestionIs it possible to write stored procedures and views in ms access Pin
Member 426027026-Jun-09 0:35
Member 426027026-Jun-09 0:35 
AnswerRe: Is it possible to write stored procedures and views in ms access Pin
riced26-Jun-09 2:05
riced26-Jun-09 2:05 
QuestionFloat or else? Pin
VisualLive25-Jun-09 16:37
VisualLive25-Jun-09 16:37 
AnswerRe: Float or else? Pin
Mycroft Holmes25-Jun-09 17:18
professionalMycroft Holmes25-Jun-09 17:18 
GeneralRe: Float or else? Pin
J4amieC25-Jun-09 23:50
J4amieC25-Jun-09 23:50 
GeneralRe: Float or else? Pin
Mycroft Holmes26-Jun-09 0:29
professionalMycroft Holmes26-Jun-09 0:29 
AnswerRe: Float or else? Pin
Niladri_Biswas26-Jun-09 5:26
Niladri_Biswas26-Jun-09 5:26 
QuestionUsing the database from C# Pin
kikeman25-Jun-09 10:03
kikeman25-Jun-09 10:03 
AnswerRe: Using the database from C# Pin
Eddy Vluggen25-Jun-09 11:22
professionalEddy Vluggen25-Jun-09 11:22 
AnswerRe: Using the database from C# Pin
Mycroft Holmes25-Jun-09 17:22
professionalMycroft Holmes25-Jun-09 17:22 
GeneralRe: Using the database from C# Pin
kikeman26-Jun-09 7:30
kikeman26-Jun-09 7:30 
QuestionWhat way of datastorage should be use for small aaplication Pin
Member 442053425-Jun-09 1:47
Member 442053425-Jun-09 1:47 
AnswerMS-Access Pin
David Mujica25-Jun-09 2:55
David Mujica25-Jun-09 2:55 
AnswerRe: What way of datastorage should be use for small aaplication Pin
Niladri_Biswas25-Jun-09 5:07
Niladri_Biswas25-Jun-09 5:07 
AnswerRe: What way of datastorage should be use for small aaplication Pin
J4amieC25-Jun-09 5:52
J4amieC25-Jun-09 5:52 
AnswerRe: What way of datastorage should be use for small aaplication Pin
David Skelly25-Jun-09 6:22
David Skelly25-Jun-09 6:22 
AnswerRe: What way of datastorage should be use for small aaplication Pin
riced25-Jun-09 6:25
riced25-Jun-09 6: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.