Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. DPaul1994

    SQLite update syntax

    The error persists..
  2. DPaul1994

    SQLite update syntax

    I find out where is the problem, but I don't really know how to solve it. That is the code. THe problem is dat `database is locked`. Which means, when I open that select, I can't use that update because i already have an opened select. But I;m looking for a solution without using oepn() and...
  3. DPaul1994

    Which version for windows 8.1 C# game developing software?

    Well, you could install visual studio 2013 which I think is the best platform for C# development, this is also what I'm using for c#.
  4. DPaul1994

    SQLite update syntax

    I tried this solution right now and it works just the same.
  5. DPaul1994

    SQLite update syntax

    I have a code in C# that should update a column form my table. Table is `accounts`, row is `totalsimyes` and new value that should be inserted in column is `totalsimda`. string updatecorect = "select totalsimyes from accounts where username = 'DPaul'"...
  6. DPaul1994

    Which version for windows 8.1 C# game developing software?

    This depends on what kind of games you want to develop. C# is a nice way to start, but I suggest you to start and create games in Unity
  7. DPaul1994

    SQLite encryption hashing with SHA1 or KDF

    Oups, my mistake, code tag with name doesn't work guys
  8. DPaul1994

    SQLite encryption hashing with SHA1 or KDF

    Why " Text " is not working?
  9. DPaul1994

    SQLite encryption hashing with SHA1 or KDF

    Hi everyone. I have an application which uses a SQLite database. In database, I have a table and in one column, I have a value inserted from SQL code which is encrypted with sha1. But, I want to use it in my C# application like this: cmd.CommandText = "Select * from accounts where...
  10. DPaul1994

    Connection to MySql error

    I solved it, thank you :)
  11. DPaul1994

    Connection to MySql error

    getConnection() returns true or false. If connection is on, returns true, else is trying to connect.
  12. DPaul1994

    Connection to MySql error

    Anybody?
  13. DPaul1994

    2 table in one button

    Aaaa ok then. Thank you for sugestions!
  14. DPaul1994

    2 table in one button

    I don't really understand what are you sayin'..Can you give ma an example?
  15. DPaul1994

    Connection to MySql error

    Hi guys. I have a form where I have some labels, checkboxes and a button. For connection to MySql I have a class named ConnConfig and functions for open and closing connection(if needed, closeConn(), openConn()). So, I have a function which extracts from database some data: private void select()...
  16. DPaul1994

    2 table in one button

    This is source code: SELECT bilete LOCATE FOR thisform.Text13.Value = serie IF FOUND() thisform.Text13.Value = INT(RAND() * 1000) endif GO BOTTOM APPEND BLANK replace bilete.cod1 WITH thisform.Text1.value, bilete.cod2 WITH thisform.Text2.value,bilete.cod3 WITH thisform.Text3.Value,bilete.cod4...
  17. DPaul1994

    2 table in one button

    I managed to fix it, but now, when I insert records via form, I reset all textbox fields with initial value (0) and return, but if I try to insert another records in same session, I receive: File is in use. I know this concept from C#, I guess that the table is not closed after first attempt
  18. DPaul1994

    2 table in one button

    I tried those solutions but no one works for me, I guess because I have to use also "go bottom" and "append blank" for each table..so I can't use them without "select table", right?
  19. DPaul1994

    2 table in one button

    Sorry for that english, I wrote quickly :))
  20. DPaul1994

    2 table in one button

    Hi. I want to use 2 free tables in one button. For example I have a textbox named Text1. I want to replace in 'tabel1' the 'tabel1.value1' with Text1 value and in 'tabel2.value1' with same value. I tried to use simple those 2 table, but I receive: File is in use. If I try to close tables after...

Part and Inventory Search

Back
Top