<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.infopathdev.com:443/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Qdabra Database Accelerator</title><link>https://www.infopathdev.com:443/forums/61.aspx</link><description>Qdabra Database Accelerator (DBXL) simplifies connecting InfoPath to SQL Server and SharePoint for codeless storage, permissions, workflow, and reporting on InfoPath forms. This forum also supports users of Qdabra's WSSP.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP3 (Build: 31118.962)</generator><item><title>Re: DBXL Training Documentation</title><link>https://www.infopathdev.com:443/forums/thread/19435.aspx</link><pubDate>Mon, 30 Apr 2007 22:59:31 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19435</guid><dc:creator>Patrick Halstead</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19435.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19435</wfw:commentRss><description>&lt;p&gt;Hi Tolansp,&lt;/p&gt;
&lt;p&gt;Thanks for the reminder. We&amp;#39;ll post this to the site this week. Stay tuned.&lt;/p&gt;</description></item><item><title>Re: DBXL Training Documentation</title><link>https://www.infopathdev.com:443/forums/thread/19434.aspx</link><pubDate>Mon, 30 Apr 2007 22:57:17 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19434</guid><dc:creator>Matt Faus</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19434.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19434</wfw:commentRss><description>&lt;p&gt;Hi snyderjd,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I&amp;#39;m not terribly fluent in VB, but I don&amp;#39;t see any loops in your web service code.&amp;nbsp; You will have to either call that method multiple times, or loop through each of the rows within the method itself.&amp;nbsp; If you are calling the method several times, you might want to check the key constraints in SQL.&amp;nbsp; Sometimes you will overwrite your previous entry if you&amp;#39;re not careful.&lt;/p&gt;
&lt;p&gt;Regardless, this seems like a perfect situation for DBXL.&amp;nbsp; Why write this huge custom web service for shredding XML into SQL when we have already done it? Plus, ours comes with a myriad of additional features.&lt;/p&gt;</description></item><item><title>Re: DBXL Training Documentation</title><link>https://www.infopathdev.com:443/forums/thread/19383.aspx</link><pubDate>Thu, 26 Apr 2007 22:45:27 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19383</guid><dc:creator>snyderjd</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19383.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19383</wfw:commentRss><description>&lt;p&gt;I too am having the same problem. I have a web service that has been created allowing me to insert to SQL 2005 database. However, I am only able to insert the first row of a repeating section. I was hoping Qdabra would be the solution, but the documenation only really discusses the sample ExpenseReport Is it possible to use a different form?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;If not, here is a copy of the WebService I am using for the insert statement... this is very simplified&amp;nbsp; version of what I am trying accomplish... (for testing purposes only)&lt;/p&gt;
&lt;p&gt;The infopath form is a single repeating section with two fields [txtAppName] &amp;amp; [intAppType]&lt;/p&gt;
&lt;p&gt;Here is the sample Web Service I am using... again it only inserts 1 row regardless of how many repeating sections I have...&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;&amp;lt;%@ WebService language=&amp;quot;VB&amp;quot; class=&amp;quot;TestClass&amp;quot; %&amp;gt;&lt;/p&gt;
&lt;p&gt;Imports System&lt;br /&gt;Imports System.Web.Services&lt;br /&gt;Imports System.Xml.Serialization&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Public Class TestClass&lt;/p&gt;
&lt;p&gt;&amp;lt;WebMethod&amp;gt; Public Function Add(a As Integer, b As Integer) As Integer&lt;br /&gt;Return a + b&lt;br /&gt;End Function&lt;/p&gt;
&lt;p&gt;&amp;lt;WebMethod&amp;gt; Function InsertApplication(ByVal appName As String, ByVal appType As Integer) As System.Data.Dataset&lt;br /&gt;Dim connectionString As String = &amp;quot;server=&amp;#39;server1\application&amp;#39;; trusted_connection=true; database=&amp;#39;Application&amp;quot;&amp;amp; _&lt;br /&gt;&amp;quot;Type&amp;quot;&lt;br /&gt;Dim dbConnection As System.Data.IDbConnection = New System.Data.SqlClient.SqlConnection(connectionString)&lt;br /&gt;Dim queryString As String = &amp;quot;INSERT INTO [tblApplication] ([AppName], [AppType]) VALUES (@AppName, @AppType)&amp;quot;&lt;br /&gt;Dim dbCommand As System.Data.IDbCommand = New System.Data.SqlClient.SqlCommand&lt;br /&gt;dbCommand.CommandText = queryString&lt;br /&gt;dbCommand.Connection = dbConnection&lt;/p&gt;
&lt;p&gt;Dim dbParam_appName As System.Data.IDataParameter = New System.Data.SqlClient.SqlParameter&lt;br /&gt;dbParam_appName.ParameterName = &amp;quot;@AppName&amp;quot;&lt;br /&gt;dbParam_appName.Value = appName&lt;br /&gt;dbParam_appName.DbType = System.Data.DbType.[String]&lt;br /&gt;dbCommand.Parameters.Add(dbParam_appName)&lt;br /&gt;Dim dbParam_appType As System.Data.IDataParameter = New System.Data.SqlClient.SqlParameter&lt;br /&gt;dbParam_appType.ParameterName = &amp;quot;@AppType&amp;quot;&lt;br /&gt;dbParam_appType.Value = appType&lt;br /&gt;dbParam_appType.DbType = System.Data.DbType.Int32&lt;br /&gt;dbCommand.Parameters.Add(dbParam_appType)&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Dim rowsAffected As Integer = 0&lt;br /&gt;dbConnection.Open&lt;br /&gt;Try&lt;br /&gt;rowsAffected = dbCommand.ExecuteNonQuery&lt;br /&gt;Finally&lt;br /&gt;dbConnection.Close&lt;br /&gt;End Try&lt;/p&gt;
&lt;p&gt;End Function&lt;br /&gt;End Class&lt;/p&gt;&lt;/font&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: DBXL Training Docuementation</title><link>https://www.infopathdev.com:443/forums/thread/19382.aspx</link><pubDate>Thu, 26 Apr 2007 22:16:45 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19382</guid><dc:creator>tolansp</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19382.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19382</wfw:commentRss><description>&lt;p&gt;Was the advanced Topic Document ever designed?&amp;nbsp; The new Getting Started still does not really address the&amp;nbsp;all the functions that are available.&amp;nbsp;&amp;nbsp;It&amp;#39;s more&amp;nbsp;of an appendage to what a products document would be. We&amp;#39;re really trying to see how we can point the service to another one of our databases within SQL and use the webservice to tie our Infopath form in.&amp;nbsp; This is a new Submit Only form and our only need for the webservice is that we have a few large data type fields.&amp;nbsp; We&amp;#39;ve successfully designed a webservice to insert items into the document, but have had difficulty with the Repeating Tables and Repeating sections inserting into the db.&lt;/p&gt;</description></item><item><title>Re: DBXL Training Documentation</title><link>https://www.infopathdev.com:443/forums/thread/19081.aspx</link><pubDate>Wed, 07 Mar 2007 06:50:24 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19081</guid><dc:creator>Kaoru Okumura</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19081.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19081</wfw:commentRss><description>Here is updated &amp;quot;getting started&amp;quot; for DBXL Version 2: http://www.qdabra.com/Content/ProdInfo/DBXLv2/GettingStarted.htm thank you!</description></item><item><title>Re: DBXL Training Docuementation</title><link>https://www.infopathdev.com:443/forums/thread/19080.aspx</link><pubDate>Tue, 06 Mar 2007 07:20:52 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19080</guid><dc:creator>Patrick Halstead</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19080.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19080</wfw:commentRss><description>Hi TolanSP and welcome to the forum,&lt;br /&gt;We are finishing the documentation for V2. The Getting Started document has been revised recently. We also have an Exploring Advanced Topic document that we will be releasing shortly. Thank you for your patience.</description></item><item><title>DBXL Training Documentation</title><link>https://www.infopathdev.com:443/forums/thread/19057.aspx</link><pubDate>Mon, 05 Mar 2007 23:35:03 GMT</pubDate><guid isPermaLink="false">033a2e2d-04e2-4a9d-be01-a4634161eefd:19057</guid><dc:creator>tolansp</dc:creator><slash:comments>0</slash:comments><comments>https://www.infopathdev.com:443/forums/thread/19057.aspx</comments><wfw:commentRss>https://www.infopathdev.com:443/forums/commentrss.aspx?SectionID=61&amp;PostID=19057</wfw:commentRss><description>Are there any other training docs or software instructions for the DBXL suite? All I&amp;#39;ve seen is the &amp;#39;Getting Started&amp;#39; documents which aren&amp;#39;t very detailed, have missing images, and aren&amp;#39;t really comprehensive of the suite product.</description></item></channel></rss>