|
|
Thanks a lot for your link but i'm searching for C#.Net... so i need something that can help me to code a program to broadcast webcam
|
|
|
|
|
DirectX Video Stream and frame capture[^], from The Code Project article archives will not answer your question directly but may get you started in the right direction.
There are several more articles on CP just use the Articles|Search menu at the top of the page.
Henry Minute
Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”
I wouldn't let CG touch my Abacus!
When you're wrestling a gorilla, you don't stop when you're tired, you stop when the gorilla is.
|
|
|
|
|
Without using SqlCommand or CommandBuilder object,
Is it possible to interact with database?

|
|
|
|
|
Yes, you could always use something like ODBCCommand, or is that not what you're asking? If you are using SQL Server, I'd use SqlCommand over the ODBC equivalent anyday because it uses the native SQL driver, rather than having to go via the ODBC transport.
|
|
|
|
|
I am not specific to sql only !
What i want to know without using Oledb, Odbc, Sql, SqlClient namespace
Is it possible to interact with DB ?
Now don't tell you can create your own library from scratch like fraework have
May be i am asking worng ? ( As i don't exactly recall ? )
But it is something like same as my initial post 
|
|
|
|
|
Hum Dum wrote: May be i am asking worng ?
Pretty much.
ADO.net relies on derived versions of Connection, Command, and other sundry classes. Each database -- Sql Server, Oracle, MySql, Ingres, Firebird, Cache, etc. -- has its particular classes in some namespace; if you want to use ADO.net, you will need to use the classes in the appropriate namespace.
Or use something (e.g. Linq) that hides the ADO.net so you don't see it even though you're using it.
Or don't use ADO.net -- you can use older database access techniques, but ADO.net is far superior to any others I have used.
|
|
|
|
|
Sounds like a test question.
Certainly you can do without CommandBuilder, but ADO.net requires a Command, even if it's buried in a DataAdapter.
|
|
|
|
|
PIEBALDconsult wrote: Sounds like a test question.
Yup it is !
PIEBALDconsult wrote: even if it's buried in a DataAdapter.
That i know (and is my intial thought) also Odbc, Oledb namespaces.
But without all these namspaces.
Is there any way ?
|
|
|
|
|
Hum Dum wrote: But without all these namspaces.
Is there any way ?
How do you think we did it before ADO.net came along (and lifted us from the dark ages)?
|
|
|
|
|
I don't know about you, but I sacrificed chickens and did the hoodoo dance.
|
|
|
|
|
Ah, PRO*C, I did that too.
|
|
|
|
|
Hum Dum wrote: But without all these namspaces.
Is there any way ?
Well, you could always write your own protocol but that's time consuming, prone to errors and a bit, how shall I put it, boneheaded stupid.
|
|
|
|
|
Hum Dum wrote: But without all these namspaces.Is there any way ?
Those namespaces exist to serve you that very purpose. If you don't want to use any of those, AND you don't want to write your own stuff from scratch, then the only way is to p/invoke into the beast and use one of the things it has to offer.
Then it would be pointless to use .NET.
"Real men drive manual transmission" - Rajesh.
|
|
|
|
|
Hum Dum wrote: Without using SqlCommand or CommandBuilder object,
Is it possible to interact with database?
Yes, by capturing the output of SQLCMD/Isql.exe for example.
I are Troll
|
|
|
|
|
I hadn't thought of that. MySql also has a command-line utility.
|
|
|
|
|
|
You could use LINQ to SQL[^]
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
Digital man: "You are, in short, an idiot with the IQ of an ant and the intellectual capacity of a hose pipe."
|
|
|
|
|
Hello everybody,
i have an ip address. Now how can i get it's host name.
Thanks
If you can think then I Can.
|
|
|
|
|
DNS.GetHostByAddress[^].
FYI - C# is not my primary competency. No prizes for guessing how did I find an answer.
"Real men drive manual transmission" - Rajesh.
|
|
|
|
|
Precise answer.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
My latest tip/trick
|
|
|
|
|
|
If it's your address wouldn't it be your name? 
|
|
|
|
|
Dear all,
I'm looking for a method to control the input to one software from my code and receive the output of that software to use in my code. Some one call that is intergrating one software to another software. For example, I want to control the text input to TextAloud (using to convert text to human's voice). Anyone know about that?
Thanks in advance.
Best regards.
dnqhung
|
|
|
|
|
dnqhung wrote: Some one call that is intergrating one software to another software.
It's called Automation in South Asia.
dnqhung wrote: For example, I want to control the text input to TextAloud (using to convert text to human's voice). Anyone know about that?
You'll have a better chance of doing this with programs that are built with automation support in mind from the beginning. In which case, you could use the interfaces for automation exposed by the program.
In other cases, you could write code that generates events like mouse click, key presses, read the values of controls, etc., by writing code. This technique may or may not work, depending on the type of the UI you're dealing with.
"Real men drive manual transmission" - Rajesh.
|
|
|
|