Skip to content

Instantly share code, notes, and snippets.

@SajjadArifGul
Created October 8, 2015 18:34
Show Gist options
  • Save SajjadArifGul/70539553a080a1022d74 to your computer and use it in GitHub Desktop.
Save SajjadArifGul/70539553a080a1022d74 to your computer and use it in GitHub Desktop.
Query q = new Query();
string AQ = string.Format("Insert Into InvoiceDetails (CustomerID, InvoiceID, Date,ItemID,ItemName,ItemQuantity,ItemUnitPrice, ItemTotalAmount,TotalBill) Values ('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}')", CustomerID, InvoiceID, Date, BookID, BookName, BookQuantity, BookUnitPrice, BookTotalPrice, TotalBillAmount);
q.Conect(AQ, path);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment