Google Gears SQL Lite DB and C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T09:14:45Z http://stackoverflow.com/feeds/question/586974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/586974/google-gears-sql-lite-db-and-c 2 Google Gears SQL Lite DB and C# rp 2009-02-25T17:24:41Z 2009-03-10T13:22:19Z <p>Under the covers, Google Gears uses SQL Lite as its data store. Has anyone successfully connected to the Google Gears SQL Lite DB with C#? </p> <p>Thanks</p> http://stackoverflow.com/questions/586974/google-gears-sql-lite-db-and-c/599476#599476 0 Answer by Tilek for Google Gears SQL Lite DB and C# Tilek 2009-03-01T08:11:32Z 2009-03-01T08:11:32Z <p>I haven't tried personally, but maybe this thread helps a little: <a href="http://objectmix.com/csharp/309804-using-sqlite-c.html" rel="nofollow">http://objectmix.com/csharp/309804-using-sqlite-c.html</a></p> <p>Good luck with that!</p> http://stackoverflow.com/questions/586974/google-gears-sql-lite-db-and-c/599598#599598 0 Answer by YordanGeorgiev for Google Gears SQL Lite DB and C# YordanGeorgiev 2009-03-01T10:18:11Z 2009-03-01T10:18:11Z <p>//Hi , Try this one : //Courtesy of <a href="http://www.codoxide.com/post/My-Favorite-Database-Wrapper-for-C.aspx" rel="nofollow">http://www.codoxide.com/post/My-Favorite-Database-Wrapper-for-C.aspx</a> using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.Common;</p> <p>namespace GenApp.Core.Providers.nsDb { //comm -- / //comm -- / Abstract base class for encapsulating provider independant database interactin logic. //comm -- / //comm -- / derived Connection type. //comm -- / derived Command type. //comm -- / derived Data Adapter type. public abstract class AbstractDatabase : IDisposable where CONNECTION_TYPE : DbConnection, new() where COMMAND_TYPE : DbCommand where ADAPTER_TYPE : DbDataAdapter, new() { #region : Connection :</p> <pre><code> //comm -- / &lt;summary&gt;Gets the Connection object associated with the current instance.&lt;/summary&gt; public DbConnection Connection { get { if (internal_currentConnection == null) { internal_currentConnection = new CONNECTION_TYPE(); // - Enable to measure the connection timeGenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( ref userObj , "GetConnectionString START" ); internal_currentConnection.ConnectionString = GetConnectionString(); // - Enable to measure the connection timeGenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( ref userObj , "GetConnectionString END" ); } return internal_currentConnection; } } private DbConnection internal_currentConnection; //comm -- / &lt;summary&gt;When overridden in derived classes returns the connection string for the database.&lt;/summary&gt; //comm -- / &lt;returns&gt;The connection string for the database.&lt;/returns&gt; protected abstract string GetConnectionString(); #endregion #region : Commands : //comm -- / &lt;summary&gt;Gets a DbCommand object with the specified &lt;see cref="DbCommand.CommandText"/&gt;.&lt;/summary&gt; //comm -- / &lt;param name="sqlString"&gt;The SQL string.&lt;/param&gt; //comm -- / &lt;returns&gt;A DbCommand object with the specified &lt;see cref="DbCommand.CommandText"/&gt;.&lt;/returns&gt; public DbCommand GetSqlStringCommand(string sqlString) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); DbCommand cmd = this.Connection.CreateCommand(); cmd.CommandType = CommandType.Text; cmd.CommandText = sqlString; return cmd; } //comm -- / &lt;summary&gt;Gets a DbCommand object with the specified &lt;see cref="DbCommand.CommandText"/&gt;.&lt;/summary&gt; //comm -- / &lt;param name="sqlStringFormat"&gt;The SQL string format.&lt;/param&gt; //comm -- / &lt;param name="args"&gt;The format arguments.&lt;/param&gt; //comm -- / &lt;returns&gt;A DbCommand object with the specified &lt;see cref="DbCommand.CommandText"/&gt;.&lt;/returns&gt; public DbCommand GetSqlStringCommand(string sqlStringFormat, params object[] args) { return GetSqlStringCommand(string.Format(sqlStringFormat, args)); } //comm -- / &lt;summary&gt;Gets a DbCommand object for the specified Stored Procedure.&lt;/summary&gt; //comm -- / &lt;param name="storedProcName"&gt;The name of the stored procedure.&lt;/param&gt; //comm -- / &lt;returns&gt;A DbCommand object for the specified Stored Procedure.&lt;/returns&gt; public DbCommand GetStoredProcedureCommand(string storedProcName) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); DbCommand cmd = this.Connection.CreateCommand(); cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = storedProcName; return cmd; } #region : Parameters : //comm -- / &lt;summary&gt;Adds an input parameter to the given &lt;see cref="DbCommand"/&gt;.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command object the parameter should be added to.&lt;/param&gt; //comm -- / &lt;param name="paramName"&gt;The identifier of the parameter.&lt;/param&gt; //comm -- / &lt;param name="paramType"&gt;The type of the parameter.&lt;/param&gt; //comm -- / &lt;param name="value"&gt;The value of the parameter.&lt;/param&gt; //comm -- / &lt;returns&gt;The &lt;see cref="DbParameter"/&gt; that was created.&lt;/returns&gt; public DbParameter AddInParam(DbCommand cmd, string paramName, DbType paramType, object value) { DbParameter param = cmd.CreateParameter(); param.DbType = paramType; param.ParameterName = paramName; param.Value = value; param.Direction = ParameterDirection.Input; cmd.Parameters.Add( param ); return param; } //eof method AddInParam //comm -- / &lt;summary&gt;Adds an input parameter to the given &lt;see cref="DbCommand"/&gt;.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command object the parameter should be added to.&lt;/param&gt; //comm -- / &lt;param name="paramName"&gt;The identifier of the parameter.&lt;/param&gt; //comm -- / &lt;param name="paramType"&gt;The type of the parameter.&lt;/param&gt; //comm -- / &lt;param name="size"&gt;The maximum size in bytes, of the data table column to be affected.&lt;/param&gt; //comm -- / &lt;param name="value"&gt;The value of the parameter.&lt;/param&gt; //comm -- / &lt;returns&gt;The &lt;see cref="DbParameter"/&gt; that was created.&lt;/returns&gt; public DbParameter AddInParam(DbCommand cmd, string paramName, DbType paramType, int size, object value) { DbParameter param = cmd.CreateParameter(); param.DbType = paramType; param.ParameterName = paramName; param.Size = size; param.Value = value; param.Direction = ParameterDirection.Input; //debugGenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( ref userObj , "Adding IN param " + value.ToString ( ) ); cmd.Parameters.Add(param); return param; } public DbParameter AddInOutParam ( DbCommand cmd, string paramName, DbType paramType, int size, object value ) { DbParameter param = cmd.CreateParameter ( ); param.DbType = paramType; param.ParameterName = paramName; param.Size = size; param.Value = value; param.Direction = ParameterDirection.Output; cmd.Parameters.Add ( param ); //debug if needed here return param; } public DbParameter AddInOutParam ( DbCommand cmd, string paramName, DbType paramType, object value ) { DbParameter param = cmd.CreateParameter ( ); param.DbType = paramType; param.ParameterName = paramName; param.Value = value; param.Direction = ParameterDirection.Output; cmd.Parameters.Add ( param ); return param; } #endregion #region : Executes : //comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; //comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; public int ExecuteNonQuery(DbCommand cmd) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); return cmd.ExecuteNonQuery(); } //comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; //comm -- / &lt;param name="txn"&gt;The database transaction inside which the command should be executed.&lt;/param&gt; //comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; public int ExecuteNonQuery(DbCommand cmd, DbTransaction txn) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); cmd.Transaction = txn; return cmd.ExecuteNonQuery(); } //comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; //comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; public DbDataReader ExecuteReader(DbCommand cmd) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); return cmd.ExecuteReader(); } //comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; //comm -- / &lt;param name="behavior"&gt;One of the &lt;see cref="System.Data.CommandBehavior"/&gt; values.&lt;/param&gt; //comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; public DbDataReader ExecuteReader(DbCommand cmd , CommandBehavior behavior ) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); return cmd.ExecuteReader(behavior); } //comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; //comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; public T ExecuteScalar&lt;T&gt;(DbCommand cmd, T defaultValue) { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); object retVal = cmd.ExecuteScalar(); if (null == retVal || DBNull.Value == retVal) return defaultValue; else return (T)retVal; } //comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; //comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; //comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; public DataSet ExecuteDataSet(DbCommand cmd) { ADAPTER_TYPE adapter = new ADAPTER_TYPE(); adapter.SelectCommand = (COMMAND_TYPE)cmd; DataSet retVal = new DataSet(); adapter.Fill(retVal); return retVal; } ////comm -- / &lt;summary&gt;Executes the specified command against the current connection.&lt;/summary&gt; ////comm -- / &lt;param name="cmd"&gt;The command to be executed.&lt;/param&gt; ////comm -- / &lt;returns&gt;Result returned by the database engine.&lt;/returns&gt; //public DataSet ExecuteDataSet(DbCommand cmd ) //{ // ADAPTER_TYPE adapter = new ADAPTER_TYPE(); // adapter.SelectCommand = (COMMAND_TYPE)cmd; // //cmd.CommandTimeout = 3600 // DataSet retVal = new DataSet(); // adapter.Fill(retVal); // return retVal; //} #endregion #endregion //comm -- / &lt;summary&gt;Begins a transaction.&lt;/summary&gt; //comm -- / &lt;returns&gt;Created transaction.&lt;/returns&gt; public DbTransaction BeginTransaction() { if (this.Connection.State != ConnectionState.Open) this.Connection.Open(); return Connection.BeginTransaction(); } #region : Construction / Destruction : //comm -- / &lt;summary&gt;Disposes the resources associated with the current database connection.&lt;/summary&gt; ~AbstractDatabase() { Dispose(); } #region IDisposable Members //comm -- / &lt;summary&gt;Disposes the resources associated with the current database connection.&lt;/summary&gt; public void Dispose() { if (null != internal_currentConnection) { internal_currentConnection.Dispose(); internal_currentConnection = null; } } #endregion #endregion } //eof public abstract class AbstractDatabase </code></pre> <p>} //eof namespace Providers.nsDb </p> <p>using System; using System.Collections.Generic; using System.Text; using System.Data.SqlClient;</p> <p>namespace GenApp.Core.Providers.nsDb { public class Database : AbstractDatabase {</p> <pre><code> private string _ConnectionString; public string ConnectionString { get { return _ConnectionString; } set { _ConnectionString = value; } } //eof property FieldName public Database ( string connectionStr ) { //debugGenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf(ref userObj , " CHECK --- nsDb.Database using the following connection string " + connectionStr); this.ConnectionString = connectionStr; } //eof constructor protected override string GetConnectionString ( ) { //GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( ref userObj , "In GetConnectionString the ConnectionString is " + this.ConnectionString ); //GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( ref userObj , "The comming fromURL IS " + commingFromURL ); return this._ConnectionString; } //eof protected override string GetConnectionString() } //eof class </code></pre> <p>} //eof namespace Providers.nsDb</p> http://stackoverflow.com/questions/586974/google-gears-sql-lite-db-and-c/599605#599605 0 Answer by YordanGeorgiev for Google Gears SQL Lite DB and C# YordanGeorgiev 2009-03-01T10:20:49Z 2009-03-01T10:20:49Z <p>//so would use it like this : //</p> <p>public bool RunProcGetDs ( ref string msg, string domainName, string procedureName, ref DataSet ds ) {</p> <pre><code> #region Action try { using (Database db = new Database ( _ConnectionString )) { DbCommand cmd = db.GetStoredProcedureCommand ( procedureName ); db.AddInParam ( cmd, "@domain_user", DbType.String, (object)domainName ); GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( ref userObj , "METHOD START --- MetaDbControl.cs RunProcGetDs + \n" ); ds = db.ExecuteDataSet ( cmd ); Utils.Debugger.DebugDataSet("from RunProcGetDs ", ref ds); //debug msg = "Select the values for your reports"; return true; } //eof using } //eof try #endregion Action #region CatchExceptionsAdv4 catch (NullReferenceException nre) { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace (); string methodName = st.GetFrame ( 1 ).GetMethod ().Name; string className = st.GetFrame ( 1 ).GetFileName (); int lineNumber = st.GetFrame ( 1 ).GetFileLineNumber (); string encryptedErrorCode = String.Empty; encryptedErrorCode += "className - " + className + " methodName "; encryptedErrorCode += methodName + " lineNumber " + lineNumber.ToString (); encryptedErrorCode += userObj.DomainName; if (System.Convert.ToInt16 ( BL.Conf.Instance.Vars["EncryptErrorMessages"] ) == 1) encryptedErrorCode = Utils.DataEncryption.EncryptString ( encryptedErrorCode, userObj.DomainName ); userObj.Mc.Msg = "An error in the application occurred. Report the following error code " + encryptedErrorCode; userObj.Mc.ClassName += className + " ; " ; userObj.Mc.MethodName += methodName + " ; " ; userObj.Mc.DebugMsg += nre.Message; if (DbDebugger.DebugAppError ( ref userObj ) == false) { userObj.Mc.Msg = "Failed to debug application error at " + methodName; </code></pre> <p>GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( userObj.Mc.Msg ); } return false; } //eof catch</p> <pre><code> catch (System.InvalidOperationException ioe) //comm -- occurs when no result set was found !!! { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace (); string methodName = st.GetFrame ( 1 ).GetMethod ().Name; string className = st.GetFrame ( 1 ).GetFileName (); int lineNumber = st.GetFrame ( 1 ).GetFileLineNumber (); string encryptedErrorCode = String.Empty; encryptedErrorCode += "className - " + className + " methodName "; encryptedErrorCode += methodName + " lineNumber " + lineNumber.ToString (); encryptedErrorCode += userObj.DomainName; if (System.Convert.ToInt16 ( BL.Conf.Instance.Vars["EncryptErrorMessages"] ) == 1) encryptedErrorCode = Utils.DataEncryption.EncryptString ( encryptedErrorCode, userObj.DomainName ); userObj.Mc.Msg = "An error in the application occurred. Report the following error code " + encryptedErrorCode; userObj.Mc.ClassName += className + " ; " ; userObj.Mc.MethodName += methodName + " ; " ; userObj.Mc.DebugMsg += ioe.Message; if (DbDebugger.DebugAppError ( ref userObj ) == false) { userObj.Mc.Msg = "Failed to debug application error at " + methodName; </code></pre> <p>GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( userObj.Mc.Msg ); } return false; } //eof catch (System.InvalidOperationException)</p> <pre><code> catch (System.IndexOutOfRangeException ioore) //comm -- occurs when no result set was found !!! { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace (); string methodName = st.GetFrame ( 1 ).GetMethod ().Name; string className = st.GetFrame ( 1 ).GetFileName (); int lineNumber = st.GetFrame ( 1 ).GetFileLineNumber (); string encryptedErrorCode = String.Empty; encryptedErrorCode += "className - " + className + " methodName "; encryptedErrorCode += methodName + " lineNumber " + lineNumber.ToString (); encryptedErrorCode += userObj.DomainName; if (System.Convert.ToInt16 ( BL.Conf.Instance.Vars["EncryptErrorMessages"] ) == 1) encryptedErrorCode = Utils.DataEncryption.EncryptString ( encryptedErrorCode, userObj.DomainName ); userObj.Mc.Msg = "An error in the application occurred. Report the following error code " + encryptedErrorCode; userObj.Mc.ClassName += className + " ; " ; userObj.Mc.MethodName += methodName + " ; " ; userObj.Mc.DebugMsg += ioore.Message; if (DbDebugger.DebugAppError ( ref userObj ) == false) { userObj.Mc.Msg = "Failed to debug application error at " + methodName; </code></pre> <p>GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( userObj.Mc.Msg ); } return false; } //eof catch (System.IndexOutOfRangeException)</p> <pre><code> catch (System.Data.SqlClient.SqlException sqle) { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace (); string methodName = st.GetFrame ( 1 ).GetMethod ().Name; string className = st.GetFrame ( 1 ).GetFileName (); int lineNumber = st.GetFrame ( 1 ).GetFileLineNumber (); string encryptedErrorCode = String.Empty; encryptedErrorCode += "className - " + className + " methodName "; encryptedErrorCode += methodName + " lineNumber " + lineNumber.ToString (); encryptedErrorCode += userObj.DomainName; if (System.Convert.ToInt16 ( BL.Conf.Instance.Vars["EncryptErrorMessages"] ) == 1) encryptedErrorCode = Utils.DataEncryption.EncryptString ( encryptedErrorCode, userObj.DomainName ); userObj.Mc.Msg = "An error in the application occurred. Report the following error code " + encryptedErrorCode; userObj.Mc.ClassName += className + " ; " ; userObj.Mc.MethodName += methodName + " ; " ; userObj.Mc.DebugMsg += sqle.Message; if (DbDebugger.DebugAppError ( ref userObj ) == false) { userObj.Mc.Msg = "Failed to debug application error at " + methodName; </code></pre> <p>GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( userObj.Mc.Msg ); } return false; } //eof catch</p> <pre><code> catch (System.FormatException fe) { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace (); string methodName = st.GetFrame ( 1 ).GetMethod ().Name; string className = st.GetFrame ( 1 ).GetFileName (); int lineNumber = st.GetFrame ( 1 ).GetFileLineNumber (); string encryptedErrorCode = String.Empty; encryptedErrorCode += "className - " + className + " methodName "; encryptedErrorCode += methodName + " lineNumber " + lineNumber.ToString (); encryptedErrorCode += userObj.DomainName; if (System.Convert.ToInt16 ( BL.Conf.Instance.Vars["EncryptErrorMessages"] ) == 1) encryptedErrorCode = Utils.DataEncryption.EncryptString ( encryptedErrorCode, userObj.DomainName ); userObj.Mc.Msg = "An error in the application occurred. Report the following error code " + encryptedErrorCode; userObj.Mc.ClassName += className + " ; " ; userObj.Mc.MethodName += methodName + " ; " ; userObj.Mc.DebugMsg += fe.Message; if (DbDebugger.DebugAppError ( ref userObj ) == false) { userObj.Mc.Msg = "Failed to debug application error at " + methodName; </code></pre> <p>GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( userObj.Mc.Msg ); } return false; } //eof catch</p> <pre><code> catch (Exception ex) { System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace (); string methodName = st.GetFrame ( 1 ).GetMethod ().Name; string className = st.GetFrame ( 1 ).GetFileName (); int lineNumber = st.GetFrame ( 1 ).GetFileLineNumber (); string encryptedErrorCode = String.Empty; encryptedErrorCode += "className - " + className + " methodName "; encryptedErrorCode += methodName + " lineNumber " + lineNumber.ToString (); encryptedErrorCode += userObj.DomainName; if (System.Convert.ToInt16 ( BL.Conf.Instance.Vars["EncryptErrorMessages"] ) == 1) encryptedErrorCode = Utils.DataEncryption.EncryptString ( encryptedErrorCode, userObj.DomainName ); userObj.Mc.Msg = "An error in the application occurred. Report the following error code " + encryptedErrorCode; userObj.Mc.ClassName += className + " ; " ; userObj.Mc.MethodName += methodName + " ; " ; userObj.Mc.DebugMsg += ex.Message; if (DbDebugger.DebugAppError ( ref userObj ) == false) { userObj.Mc.Msg = "Failed to debug application error at " + methodName; </code></pre> <p>GenApp.Core.Providers.nsDbMeta.DbDebugger.WriteIf ( userObj.Mc.Msg ); } return false; } //eof catch #endregion CatchExceptionsAdv4</p> <pre><code> } //eof method </code></pre> http://stackoverflow.com/questions/586974/google-gears-sql-lite-db-and-c/630131#630131 0 Answer by Martin C. for Google Gears SQL Lite DB and C# Martin C. 2009-03-10T13:22:19Z 2009-03-10T13:22:19Z <p>Hi,</p> <p>have a look at my favorite <a href="http://sqlite.phxsoftware.com/" rel="nofollow">SQLite ADO.NET Wrapper</a>, which I personally use in a lot of projects. I suppose, that Google Gears is using a default SQLite database with a little bit of modifications in the code to prevent ATTACH and #PRAGMA uses. But the dataformat should be identical and so you should be able to access it using this wrapper.</p> <p>Best regards, Martin</p>