Hi,
I want to use bulk import in module zero to copy bulk data's from excel sheet. I am using Oledb connection for bulk import. but the connection string is not properly worked. if i use any type of new connection in module zero it shows some error only.
my coding is
string ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath + ";Extended Properties=Excel 12.0;"; using (OleDbConnection conn = new System.Data.OleDb.OleDbConnection(ConnectionString)) { conn.Open(); DataTable dtExcelSchema = conn.GetSchema("Tables"); string sheetName = dtExcelSchema.Rows[0]["TABLE_NAME"].ToString(); string query = "SELECT * FROM [" + sheetName + "]"; OleDbDataAdapter adapter = new OleDbDataAdapter(query, conn); adapter.Fill(ds, "Items"); string con = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString; }
i am getting an error in the bold line.how can i solve this problem. how can i use oledb connection in module Zero. help me to resolve this.
Thanks
Hi
I am using some complex storeed procedure(SP) in my application for generating charts. now i am using module zero for application development...so i needed to use that SP's to module zero project...how can i integrate the store procedures in my module zero application....kindly give a guidance...make reply ASAp.
Thanks
Hi
I want to change the Default Email Configuration Setting in Module Zero Project....How can i change it.....where the Email configuration setting are mentiond.Reply ASAP.
Thanks & Regards Mugesh.R
Hi,
I need to configure "Db First Migration" in Module Zero Project. How can i Convert the "Code First to Db First Migration"...kindly explain it detailed....And guide me what are steps need to follow....
Thanks
Followed the Module Zero Development Step by step guide..I was created the Persons Table using Code first....After Created table the Persons Repository is not injected.....I stuck up in that area...what i have to do for Getting Persons Repository...Make Reply As soon......
We Are Using Db First Migration in our Application..How To Configure Db First Migration in our Module Zero Project..Kindly Explain detailed how to configure the Db first Modal..