Hi all,
Can anybody help me...How to create insert store procedure in access db with c# windows application.
bhagawatshinde
11
Posting Whiz
Recommended Answers
Jump to PostHere is a technique for creating a stored procedure in an Access database using C# code.
//using System.Data.Odbc; private static bool CreateProc(ref string strError) { bool blnRetVal = true; string strSQL = "create proc InsTestNum2(inTestNum) AS INSERT INTO Test_Detail(test_no) values(inTestNum)"; try { using (OdbcConnection conn = new …
All 2 Replies
Reply to this topic
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.