Click here to Skip to main content
15,899,124 members
Home / Discussions / Database
   

Database

 
GeneralRe: Generate event from database... or something like that... Pin
Christian Graus30-Jun-07 15:50
protectorChristian Graus30-Jun-07 15:50 
GeneralRe: Generate event from database... or something like that... Pin
Sathesh Sakthivel30-Jun-07 16:31
Sathesh Sakthivel30-Jun-07 16:31 
AnswerRe: Generate event from database... or something like that... Pin
Rob Graham30-Jun-07 4:02
Rob Graham30-Jun-07 4:02 
QuestionHow can i select all tables from a database Pin
anujose29-Jun-07 20:58
anujose29-Jun-07 20:58 
AnswerRe: How can i select all tables from a database Pin
Bassam Saoud29-Jun-07 22:04
Bassam Saoud29-Jun-07 22:04 
QuestionREQUEST Pin
NAKRAINC29-Jun-07 18:26
NAKRAINC29-Jun-07 18:26 
AnswerRe: REQUEST Pin
Bassam Saoud29-Jun-07 22:05
Bassam Saoud29-Jun-07 22:05 
AnswerRe: REQUEST Pin
Christian Graus30-Jun-07 0:35
protectorChristian Graus30-Jun-07 0:35 
Questioninstaller with dataBase Pin
Ali el29-Jun-07 6:57
Ali el29-Jun-07 6:57 
AnswerRe: installer with dataBase Pin
Christian Graus30-Jun-07 0:37
protectorChristian Graus30-Jun-07 0:37 
QuestionSQL Server 2005 Express and MSDE Pin
Aisha Ikram29-Jun-07 5:13
Aisha Ikram29-Jun-07 5:13 
AnswerRe: SQL Server 2005 Express and MSDE Pin
originSH29-Jun-07 5:24
originSH29-Jun-07 5:24 
GeneralRe: SQL Server 2005 Express and MSDE Pin
Aisha Ikram29-Jun-07 5:59
Aisha Ikram29-Jun-07 5:59 
GeneralRe: SQL Server 2005 Express and MSDE Pin
originSH29-Jun-07 6:05
originSH29-Jun-07 6:05 
GeneralRe: SQL Server 2005 Express and MSDE Pin
Aisha Ikram2-Jul-07 0:15
Aisha Ikram2-Jul-07 0:15 
QuestionInserting a item into a combo box that is bound to a binding source. Pin
steve_rm29-Jun-07 4:35
steve_rm29-Jun-07 4:35 
AnswerRe: Inserting a item into a combo box that is bound to a binding source. Pin
Michael Potter29-Jun-07 8:29
Michael Potter29-Jun-07 8:29 
QuestionASP convert date Pin
Tom Francis29-Jun-07 3:35
Tom Francis29-Jun-07 3:35 
AnswerRe: ASP convert date Pin
leckey29-Jun-07 4:13
leckey29-Jun-07 4:13 
AnswerRe: ASP convert date Pin
SHatchard29-Jun-07 4:26
SHatchard29-Jun-07 4:26 
GeneralRe: ASP convert date Pin
Tom Francis29-Jun-07 5:19
Tom Francis29-Jun-07 5:19 
AnswerRe: ASP convert date Pin
Mike Dimmick29-Jun-07 7:03
Mike Dimmick29-Jun-07 7:03 
Normal rules apply: for values that can change, particularly ones supplied by the user, you should use a parameterized query. You should only break this rule if your database provider doesn't support parameterized queries.

In classic ADO, use the Command object's Parameters collection. See your provider's documentation for how to indicate a parameter (for SQL Server, you can use named parameters by using an @ symbol followed by a name). Some providers only support positional parameters.

For a date/time value, you probably want the adDBTimeStamp data type for your parameter. You'll have to convert the value in your input box into a VBScript Date value. For that you probably need the DateSerial function.

Stability. What an interesting concept. -- Chris Maunder

QuestionRegarding stored procedure parameters Pin
mukkanti00729-Jun-07 1:55
mukkanti00729-Jun-07 1:55 
AnswerRe: Regarding stored procedure parameters Pin
kubben29-Jun-07 2:01
kubben29-Jun-07 2:01 
NewsNAKRA FINAL Pin
NAKRAINC29-Jun-07 1:45
NAKRAINC29-Jun-07 1:45 

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.