check SQLite database record

i want to check if there’s no record in my SQLite database, then it will showing blank slot files, and here’s the code :

if(!(ArrayList in databaseData)){       ///   <------- is it possible to use this?
	for(var i=0;i<15;i++){
            	GUILayout.BeginHorizontal();
                if(GUILayout.Button("Save File "+ i)){
                	enableValidate = true;
                }
                GUILayout.EndHorizontal();
    }
}

how can i do the checking record?
i will appreciate any suggestion,

Thanks in advance! :slight_smile:

try this site…
i think it might help…

^____^