Created
October 8, 2015 18:34
-
-
Save SajjadArifGul/70539553a080a1022d74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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