Back to project page ShowMeTweets.
The source code is released under:
MIT License
If you think the Android project ShowMeTweets listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fcduarte.showmetweets.dao; //from w ww.ja va 2 s .c o m import com.activeandroid.query.Select; import com.fcduarte.showmetweets.model.User; public class UserDAO { public User findByUsername(String username) { return new Select().from(User.class).where("username = ?", username).executeSingle(); } }