i am working in web site project for e-learning in asp.net using vb.net, one of our services in our web page is the ability to record your voice using (save recorder,play recorder which in windows) then send it as voice messege. I want your help how can i save voice in data base & how can i use voice recorder that is build in windows.

sorry, my english language is weak (i hope you understand my messege)
please help me

Saving voice is no different than saving any other file, it is just an audio file. Saving binary to SQL is usually not a good idea, and is not what SQL was intended for.

Create a table with a varchar(max) column (BLOB), or image data type and you can stream data in to it.

As for using the windows audio record... just record the sound snippet, save it to a file, then upload the file to the website. The website will stream the data in to the SQL Database.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.