Skip to content
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    R
    It's a shocker that a database installed on each client that uses it has more installations than a database installed on more machines than those that have one installation supporting possibly thousands of clients. I don't think that makes it "most widely-used" though necessarily. "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.
  • What is the syntax error in this SQLite query?

    C# question help database sqlite
    14
    0 Votes
    14 Posts
    0 Views
    S
    For inserting data. Stay in context. :doh:
  • How to solve this Error in SQLite?

    C# database help sqlite debugging tutorial
    3
    0 Votes
    3 Posts
    0 Views
    D
    cmd.Parameters.AddWithValue(@EqpCode, EqpCode); cmd.Parameters.AddWithValue(@EqpName, EqpName); cmd.Parameters.AddWithValue(@FileName, FileName); You need to enclose the parameter names in quotes. They are the strings that identify which parameter they go to in the SQL statement. cmd.Parameters.AddWithValue("@EqpCode", EqpCode); cmd.Parameters.AddWithValue("@EqpName", EqpName); cmd.Parameters.AddWithValue("@FileName", FileName); Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles. Dave Kreskowiak
  • An error in SQLite

    C# database help sqlite debugging
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • SQLite query

    Database database help android sqlite question
    5
    0 Votes
    5 Posts
    0 Views
    D
    Richard Deeming wrote: I can't find any documentation to suggest that Sqlite supports multi-value IN queries; that syntax only seems to apply to MySQL. Given that the query works in both Android Studio and in DB Browser for SQLite, I'd say the syntax is supported. Richard Deeming wrote: Would an Exists query work instead? I'll try it and see. [edit] The EXISTS query produces the same results as the second query in my initial post. Thanks. I'm still wondering what AS has against that first query string, though. [/edit] "One man's wage rise is another man's price increase." - Harold Wilson "Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons "You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
  • creation of login page in android studio

    Android android database sqlite
    5
    0 Votes
    5 Posts
    0 Views
    I
    Use Room library for SQLite database. second, you cannot get the device IMEI Number programmatically. First Create A Registration form and add three edit text there, One for USERNAME, Second for PASSWORD, and third for IMEI. Store these three details in the SQLite database and you can easily authenticate the user with IMEI and Password or USERNAME and password
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Coder Review for Article

    Article Writing csharp database sqlite visual-studio wpf
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Any good tool (free) for DB Schema?

    Database database javascript sqlite com xml
    5
    0 Votes
    5 Posts
    1 Views
    S
    Sure, will have a look and report back in case I find anything interesting. Thanks man! :thumbsup: For your read/comments: Beginner’s Guide to understand Kafka Beginners Quick Start to Learn React.js
  • not close sqlitedb in php is ok?

    Web Development sqlite php database help question
    5
    0 Votes
    5 Posts
    0 Views
    M
    You can turn to http://module-presta.com/ to solve this problem
  • android

    Android android sqlite help tutorial
    2
    0 Votes
    2 Posts
    0 Views
    D
    Member 14849785 wrote: I don't know how to dis play folders and items on recyclview Do you have an adapter bound to this view? "One man's wage rise is another man's price increase." - Harold Wilson "Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons "You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
  • 0 Votes
    13 Posts
    0 Views
    R
    Parameters don't "sanitize" or "escape" special characters. They pass parameters across completely separately from the command text, so that there is no way for the database engine to get confused and treat part of the parameter as part of the command. Everything you wanted to know about SQL injection (but were afraid to ask) | Troy Hunt[^] How can I explain SQL injection without technical jargon? | Information Security Stack Exchange[^] "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • 0 Votes
    7 Posts
    0 Views
    L
    Whatever you think you entered perhaps did not happen. Or your query is somehow incorrect. You can easily get all the information from SQLite database files using the sqlite3 command line interface.
  • 0 Votes
    52 Posts
    0 Views
    L
    Good to hear it works; you're welcome, and I'll be more careful in the future to make sure I understand the question :D Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
  • DB Browser for SQLite

    Free Tools database sqlite
    5
    0 Votes
    5 Posts
    0 Views
    M
    I've used SQLite administration | SQLite Expert[^] for years and it's an awesome tool! I'm not sure how many cookies it makes to be happy, but so far it's not 27. JaxCoder.com
  • 0 Votes
    14 Posts
    0 Views
    L
    Great, now I have a tentative timeframe for this one[^] I reported last December! .net core is a joke. Luca The Price of Freedom is Eternal Vigilance. -- Wing Commander IV En Það Besta Sem Guð Hefur Skapað, Er Nýr Dagur. (But the best thing God has created, is a New Day.) -- Sigur Ròs - Viðrar vel til loftárása
  • 0 Votes
    13 Posts
    0 Views
    J
    I don't know enough about Dart to say. It depends on what you're looking to accomplish. If you want sequential but non-blocking processing of the list, yea I think it should work as long as you await on that function. EDIT: Removed a sentence, been reading up on asynchronous stuff in Dart and it's the same as C# where it doesn't allow await inside of a non-async function.
  • 0 Votes
    2 Posts
    0 Views
    R
    If it's a plugin, is it looking for the file in the directory of the application you've plugged into, rather than in the directory of the plugin? Maybe you could use the AssemblyResolve event to locate the file? Resolve assembly loads | Microsoft Docs[^] "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • 0 Votes
    3 Posts
    0 Views
    K
    Plus, I think it’s fixed in Chrome, and the likelihood of someone even trying the overflow in something else is pretty unlikely. I agree that “the holes you make are bigger than the holes the press warns about “ (I really need to work on that bumper sticker aphorism. Not “sexy” enough yet. TTFN - Kent