• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Reply to: Sqlite

Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "Sqlite"

Collapse

  • Guest's Avatar
    Guest replied
    sql

    > tell me how to include more than one SQL statement in a command?

    I written my layer that was splitting multiple SQL statements and executing them one after another.

    Leave a comment:


  • Guest's Avatar
    Guest replied
    Re: right -

    Found it's a bug in the ADO.NET provider.

    Yes SQL should be separated by semi-colons.

    Provider is returning the result of the 1st command in the batch and not the last.

    Hence UPDATE followed by SELECT does not work.

    Still, the src for the provider is available so I can patch the C# code until it is fixed. That's the great thing about open source, you can see and patch the source.

    Leave a comment:


  • Guest's Avatar
    Guest replied
    right -

    no stored procs.

    Leave a comment:


  • Guest's Avatar
    Guest replied
    is the syntax

    not the same as mssql? separate commands with a semicolon? does it not support stored procs?

    Leave a comment:


  • Guest's Avatar
    Guest started a topic Sqlite

    Sqlite

    Anyone used the .NET provider sourceforge.net/projects/adodotnetsqlite/ for the embedded Sqlite database www.sqlite.org/ tell me how to include more than one SQL statement in a command?

    For example, set the CommandText to perform an insert and also select the last_insert_rowid() so that this is available using ExecuteScalar()?

    I have got round it by running two commands on the same connection, but someone must know how to run SQL batches through a single command?

    By the way this free lightweight DB engine is pretty good.

Working...
X