[sqlite] First question. Learning to use mailing lists

2018-07-12 Thread Enrique Mesa
Hello. I am a newcommer to programming tools like GIT and everything. I
have programming skills but i don't know how mailing lists works. I want to
submit my own quesion.

Is this being read by all members? Please, if someone read this, send a
reply to me.

Also, i want to have see portfolio of members, because i am a programmer
but i remain theorical and don't build serious software. Just to enjoy
software. I am from Venezuela, and my country is spanish speaker.

My question is: I am want just to see portfolio of members, Just I want to
see what is able to do SQLite. Pèrsonally I have used it in my custom
software due to easy to set up without dealing with a mess like mysql that
requires you to connect to a server-based software. Also, I plan to learn
how to read its source code.

Give me please a summary of your software which uses SQLite. Some nice
videos, releases (demos or paid software), websites or any kind of content
of your ownership is welcomed.

Thanks, Enrique
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] About sql parametrized queries

2018-01-16 Thread Enrique Mesa
I am writing this message because i need a bit of help performing this kind
of query in sqlite engine. My wish to run the following SQL statement:
"SELECT * FROM users WHERE username = ? ;";

I am not using wrappers. I am using just plain SQLite C Library from my
program wirtten in C++. I don't know how to face this.

It is expected to get back just one record, because it is a uses login
system. It must return the userhash, and user salt.

CREATE TABLE users(
id INTEGER PRIMARY KEY,
username TEXT,
user_hash INTEGER,
user_salt TEXT);

Please help me. I am looking also for developers whom want to test my
software. Test means clients whom want to use it.

I am a newbie on the programming world.

Thanks
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users