Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
GeneralRe: Open source project with good coverage Pin
Skynet8726-Aug-13 10:53
Skynet8726-Aug-13 10:53 
GeneralRe: Open source project with good coverage Pin
Boipelo26-Aug-13 11:13
Boipelo26-Aug-13 11:13 
GeneralRe: Open source project with good coverage Pin
Bernhard Hiller26-Aug-13 20:57
Bernhard Hiller26-Aug-13 20:57 
AnswerRe: Open source project with good coverage Pin
Ingo27-Aug-13 0:37
Ingo27-Aug-13 0:37 
QuestionData backup in Windows Forms Application Pin
Thota Nani26-Aug-13 7:55
Thota Nani26-Aug-13 7:55 
AnswerRe: Data backup in Windows Forms Application Pin
Abhinav S26-Aug-13 8:04
Abhinav S26-Aug-13 8:04 
GeneralRe: Data backup in Windows Forms Application Pin
Thota Nani26-Aug-13 8:12
Thota Nani26-Aug-13 8:12 
GeneralRe: Data backup in Windows Forms Application Pin
Jason Gleim26-Aug-13 8:37
professionalJason Gleim26-Aug-13 8:37 
Sure... but I'm not sure you understand exactly what you are asking. If you want to "backup" the data via WinForms you are really EXPORTING the data as a snapshot at some point in time. You can do this a million different ways and into a million different formats. So start with some SELECT * queries, a streamwriter, and go to town. But understand that you aren't really backing up the DB. You are only copying out the data as some point in time. If you needed to recover from an export like this, you would need to write routines to import the data or save it in an importable format like CSV or XML.


BACKING up your DB means taking a copy of the on-disk files where your data lives. This includes schema information, t-logs, etc. You can recover your database from a BACKUP much like you can restore Windows to a previous point in time using System Restore. If you want to BACKUP your database, then you need a BACKUP tool that isn't part of your WinForms application. This tool would run on the server where your DB is (or another server) and take a complete backup of your database at some given interval. That would be persisted to tape or a cloud account or something safe.
GeneralRe: Data backup in Windows Forms Application Pin
Thota Nani26-Aug-13 9:00
Thota Nani26-Aug-13 9:00 
Questionregex search Pin
jojoba2026-Aug-13 4:37
jojoba2026-Aug-13 4:37 
AnswerRe: regex search Pin
OriginalGriff26-Aug-13 5:38
mveOriginalGriff26-Aug-13 5:38 
AnswerRe: regex search Pin
PIEBALDconsult26-Aug-13 5:51
mvePIEBALDconsult26-Aug-13 5:51 
AnswerRe: regex search [Solved!] Pin
jojoba2026-Aug-13 7:07
jojoba2026-Aug-13 7:07 
QuestionCheckBoxlist Select ALl Pin
pavithrasubbareddy26-Aug-13 2:25
pavithrasubbareddy26-Aug-13 2:25 
AnswerRe: CheckBoxlist Select ALl Pin
SaqibRasheed26-Aug-13 5:16
SaqibRasheed26-Aug-13 5:16 
AnswerRe: CheckBoxlist Select ALl Pin
Mycroft Holmes26-Aug-13 13:03
professionalMycroft Holmes26-Aug-13 13:03 
QuestionC# Devexpress Row Select Pin
Msdx4526-Aug-13 0:44
Msdx4526-Aug-13 0:44 
AnswerRe: C# Devexpress Row Select Pin
Jason Gleim26-Aug-13 8:49
professionalJason Gleim26-Aug-13 8:49 
GeneralRe: C# Devexpress Row Select Pin
Msdx4526-Aug-13 15:49
Msdx4526-Aug-13 15:49 
GeneralRe: C# Devexpress Row Select Pin
Jason Gleim27-Aug-13 4:52
professionalJason Gleim27-Aug-13 4:52 
GeneralRe: C# Devexpress Row Select Pin
Msdx4531-Aug-13 12:53
Msdx4531-Aug-13 12:53 
QuestionDownload multiple files Pin
cdpsource25-Aug-13 20:55
cdpsource25-Aug-13 20:55 
AnswerRe: Download multiple files Pin
Bernhard Hiller25-Aug-13 21:04
Bernhard Hiller25-Aug-13 21:04 
GeneralRe: Download multiple files Pin
harold aptroot25-Aug-13 21:59
harold aptroot25-Aug-13 21:59 
QuestionInitializing a Class Property Pin
s.leveel25-Aug-13 9:24
s.leveel25-Aug-13 9:24 

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.