Click here to Skip to main content
15,907,687 members
Home / Discussions / Database
   

Database

 
AnswerRe: Please help me Pin
Colin Angus Mackay21-Nov-07 4:20
Colin Angus Mackay21-Nov-07 4:20 
GeneralRe: Please help me Pin
Paul Conrad23-Nov-07 8:34
professionalPaul Conrad23-Nov-07 8:34 
QuestionReading data from ms sql Pin
RAGHAVENDRAN200721-Nov-07 3:07
RAGHAVENDRAN200721-Nov-07 3:07 
AnswerRe: Reading data from ms sql Pin
pmarfleet21-Nov-07 8:47
pmarfleet21-Nov-07 8:47 
GeneralRe: Reading data from ms sql Pin
RAGHAVENDRAN200721-Nov-07 20:10
RAGHAVENDRAN200721-Nov-07 20:10 
GeneralRe: Reading data from ms sql Pin
pmarfleet21-Nov-07 20:51
pmarfleet21-Nov-07 20:51 
QuestionAlpha numeric Auto generate issue Pin
Gnanasekaran.P21-Nov-07 1:42
Gnanasekaran.P21-Nov-07 1:42 
AnswerRe: Alpha numeric Auto generate issue Pin
astanton197821-Nov-07 2:41
astanton197821-Nov-07 2:41 
Make sure you are pulling the correct column. "ID" may be a reserved word, and when you query the table, you are pulling the reserved word (like rowid in O.r.a.c.l.e.) and not your column.

When you SELECT data from the table, can you Alias the column or quote it? It may address the issue.

-Alias
SELECT ID as 'RowIdentifier' FROM table

-Quote
SELECT [ID] FROM table

If you get stuck, you can always append the "AB0000" to the results before they are displayed to the user.
QuestionReading an SQL backup file Pin
kkadir21-Nov-07 0:45
kkadir21-Nov-07 0:45 
AnswerRe: Reading an SQL backup file Pin
pmarfleet21-Nov-07 2:22
pmarfleet21-Nov-07 2:22 
GeneralRe: Reading an SQL backup file Pin
kkadir21-Nov-07 21:37
kkadir21-Nov-07 21:37 
GeneralRe: Reading an SQL backup file Pin
pmarfleet21-Nov-07 22:00
pmarfleet21-Nov-07 22:00 
QuestionDataSet/DataTable/Reader VS Custom Entities Pin
N a v a n e e t h20-Nov-07 22:34
N a v a n e e t h20-Nov-07 22:34 
AnswerRe: DataSet/DataTable/Reader VS Custom Entities Pin
Pete O'Hanlon20-Nov-07 23:10
mvePete O'Hanlon20-Nov-07 23:10 
GeneralRe: DataSet/DataTable/Reader VS Custom Entities Pin
N a v a n e e t h20-Nov-07 23:24
N a v a n e e t h20-Nov-07 23:24 
GeneralRe: DataSet/DataTable/Reader VS Custom Entities Pin
Pete O'Hanlon21-Nov-07 0:16
mvePete O'Hanlon21-Nov-07 0:16 
GeneralRe: DataSet/DataTable/Reader VS Custom Entities Pin
N a v a n e e t h21-Nov-07 19:40
N a v a n e e t h21-Nov-07 19:40 
AnswerRe: DataSet/DataTable/Reader VS Custom Entities Pin
Mark Churchill21-Nov-07 13:39
Mark Churchill21-Nov-07 13:39 
GeneralRe: DataSet/DataTable/Reader VS Custom Entities Pin
N a v a n e e t h21-Nov-07 19:38
N a v a n e e t h21-Nov-07 19:38 
Questionwhat sort cursors are used in msacces? Pin
nicetohaveyou20-Nov-07 20:12
nicetohaveyou20-Nov-07 20:12 
AnswerRe: what sort cursors are used in msacces? Pin
Pete O'Hanlon20-Nov-07 23:12
mvePete O'Hanlon20-Nov-07 23:12 
AnswerRe: what sort cursors are used in msacces? Pin
astanton197821-Nov-07 2:36
astanton197821-Nov-07 2:36 
GeneralRe: what sort cursors are used in msacces? Pin
Pete O'Hanlon21-Nov-07 4:44
mvePete O'Hanlon21-Nov-07 4:44 
QuestionReports based on logged on users credentials Pin
MSinha20-Nov-07 19:48
MSinha20-Nov-07 19:48 
AnswerRe: Reports based on logged on users credentials Pin
Kishore.P21-Nov-07 0:31
Kishore.P21-Nov-07 0:31 

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.