Pluralsight do not permit users to download their videos.
If you are an user of pluralsight you have agreed with their ToS,
and are thusly refrained from doing so.
Use this knowledge at your own risk.
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
package com.reactivespace.tylsinmcwalet.ui | |
import android.text.TextUtils | |
import android.view.LayoutInflater | |
import android.view.View | |
import android.view.ViewGroup | |
import android.widget.ImageView | |
import android.widget.TextView | |
import androidx.constraintlayout.widget.ConstraintLayout | |
import androidx.recyclerview.widget.RecyclerView |
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
{ | |
var con = new MySqlConnection( | |
"server=localhost;userid=root;password=admin;database=POS_DB;persistsecurityinfo=True;"); | |
var cmd = new MySqlCommand( | |
"Select DISTINCT Sales.InvoiceNo, Sales.CustomerID, Sales.GrandTotal, Sales.TotalPayment, Sales.PaymentDue, Sales.InvoiceDate, ProductSold.ConfigID, ProductSold.ProductName, ProductSold.Quantity, ProductSold.Price, ProductSold.TotalAmount " + | |
"From ProductSold, Sales, Branch " + | |
"Where Sales.InvoiceNo='INV-559216' And branch.BranchID='1'", con); | |
var sqlData = new MySqlDataAdapter { SelectCommand = cmd }; | |
sqlData.Fill(set, "Sales"); | |
sqlData.Fill(set, "ProductSold"); |
NewerOlder