Add: GetChildPhoto

This commit is contained in:
kougyokugentou 2021-02-19 22:21:31 -08:00
parent 72ab02cbfe
commit 9f1dd00cc8

View File

@ -33,6 +33,20 @@ namespace GreatHomeChildcare
// ***************** Read *******************
/* Gets a child's photo from the DB given a child id.
* INPUT: child
* OUTPUT: byte[]
*/
internal byte[] GetChildPhoto(Child child)
{
using (IDbConnection cnn = new SQLiteConnection(LoadConnectionString()))
{
string strQuery = "SELECT photo FROM Children WHERE id = @id;";
byte[] output = cnn.Query<byte[]>(strQuery, child).SingleOrDefault();
return output;
}
}
/* Gets the next available child_id from the sqlite database.
* INPUT: void
* OUTPUT: integer