Home All Groups Group Topic Archive Search About

ADO.NET

microsoft.public.dotnet.framework.adonet
Score Getting a DataRow out of a DataReader
Alex Maghen - 13 May 2006 10:05 PM - 2 messages
I have a DataReader and I want to make a DataRow object from the current row of a DataReader. The I want to destroy the DataReader and still have the DataRow. How can I extract/copy a DataRow object from the current row of a ...
Score OleDbCommand String & Parameters
Alex Maghen - 13 May 2006 4:47 PM - 2 messages
When I set the CommandText of an OleDbCommand and I want to include parameters that I'll them populate with OleDbCommand.Parameters.Add(), it looks like I can either use the question mark character (?) or an "@variable" construction in the CommandText. ...
Score System.Data.AggregateNode is not an aggregate error
bradmofo - 13 May 2006 4:28 PM - 1 message
This is for ado.net 2.0. I have a dataset with two tables that have a parent-child relationship. I am trying to sum the sum the values of a child column using: myDs.parent_table.Compute("sum(Child(parent_table_child_table).column_to_sum)","") ...
Score Select * from Excel WorkSheet
Tedmond - 13 May 2006 11:49 AM - 4 messages
Hi all, I know I can select data from a Excel worksheet using the following command text. "Select * From [Sheet1$]" That is ok for the worksheet using default name "Sheet1". But, how can I select data from a wroksheet that I don't know it's name.  Can I use somthing ...
Score Provider Tracing
Shawn B. - 12 May 2006 11:30 PM - 1 message
Greetings, I followed the instructions on MSDN for enabling the provider tracing but it does not trace anything.  Is there a simpler set of instructions (that are appplicable to the RTM version of the ADO.NET instead of Beta1) and that ...
Score Provider Tracing
Shawn B. - 12 May 2006 11:30 PM - 3 messages
Greetings, I followed the instructions on MSDN for enabling the provider tracing but it does not trace anything.  Is there a simpler set of instructions (that are appplicable to the RTM version of the ADO.NET instead of Beta1) and that ...
Score ASP.NET -> Access Database Queries
Alex Maghen - 12 May 2006 11:29 PM - 2 messages
Hi. I specifically need to yse MS Access behind a bunch os ASP.NET 2.0 pages. I'd prefer to have those pages use the MS Access file's QUERIES rather than accessing the tables directly. So I have two questions: ...
Score Moving data between datatables
noel - 12 May 2006 9:58 PM - 2 messages
I have two data tables and I need to move data from datatable to the other. The two data tables are not exactly the same so I cannot merge. Moving the data is based on a field in datatable1 that maps to datatable2.   The only ...
Score ADO.Net "Orcas" content is broken on MSDN
Oren Novotny - 12 May 2006 8:48 PM - 2 messages
The following links no longer work (they go to 404's): [link] and [link] ...
Score Performance Question
tim - 12 May 2006 8:35 PM - 2 messages
Hi, I am looking at using MS Data Application Block for my app.  However, this is a small app that connects to MS SQL db and does a couple of small queries.  I was wondering if the data app block is overkill for this app and ...
Score Using "OleDbParameter" with a DateTime type
Alex Maghen - 12 May 2006 7:44 PM - 5 messages
I'm performing an Update query using an OleDbCommand. The SQL in that command looks like... UPDATE FeedbackT SET DateTime=?, Comment=?, PressOrg=? WHERE Type = 'UpdateMe' When I try to populate the DataTime parameter using        P = new OleDbParameter("@DateTime", (Object)DateTime.Now); ...
Score Crystal Reports Main report and 2 subreports
Manz123 - 12 May 2006 7:21 PM - 1 message
Hello All, I have a main report created thru Crystal Report VS 2003. This report gets its source from a Stored procedure with one parameter. I have two other Subreports within the same report each of which gets its data from it's own stored procedure with the same parameter. ...
Score Table Adapter not showing up automatically
someone - 12 May 2006 6:54 PM - 1 message
I need to add a data bound GridView control  on my form in VS2005. When I drag the table from my dataset onto my form, it adds datasource,bindingsource and bindingnavigator controls but it does not add tableadapter control. Any idea why? ...
Score Irritating SQL 2000/2005 connection problem
Shawn B. - 12 May 2006 6:30 PM - 4 messages
Greetings, Our network environment uses only SQL 2000.  We do not have SQL 2005 installed on our network anywhere.  Using ADO.NET (SqlCommand and SqlConnection) to connect to a SQL 2000 database with a connection string that has worked for 4 years until we migrated to .NET 2.0 we get this error: ...
Score count of records in recordset
D. - 12 May 2006 5:58 PM - 3 messages
Hi, I need to know how many records i get from a sql statement. I use this and it works (amount of records = rec), but is there no better way to to that? Thanks Dominique ... comd = New System.Data.OleDb.OleDbCommand(sql, oConnection) ...
Score User with privilege on a stored procedure in SQL Server 2000 / 200
ss - 12 May 2006 5:06 PM - 5 messages
How do i create a strored procedure where a perticular user only should have the permission to execute? To execute that stored procedure in the client application, how do i specify my privileges in the ADO.NET which i will be using in ASP.NET web application? ...
Score Database with right Privileges & ADO.NET (ASP.NET Application)
ss - 12 May 2006 5:03 PM - 3 messages
Hi, Can anybody tell me like how do I create a database object like table where a user should have only read permissions? Before that, which account I should create so that I can use in my ASP.NET web application. ...
Score datatable.importrow bug
hharry - 12 May 2006 3:55 PM - 2 messages
hello all, i have 2 datatables and am trying to transfer rows from datatable a to datatable b i use the datatable.importrow method. the importrow method fails (but does not throw an exception) when importing a datarow that has numeric columns. columns of type string ...
Score Prove this package from the MS
KARL-ÅKE PERSSON - 12 May 2006 2:42 PM - 1 message
Microsoft Customer this is the latest version of security update, the "May 2006, Cumulative Patch" update which resolves all known security vulnerabilities affecting MS Internet Explorer, MS Outlook and MS Outlook Express as well as three new vulnerabilities. Install now to continue keeping your computer secure ...
Score Releasing Excel from memory
Micke - 12 May 2006 1:55 PM - 8 messages
Hi, I have following code in an aspx page:   Sub Page_Load(ByVal Src As Object, ByVal E As EventArgs)     Dim oExcel As New Excel.Application     Dim oWorkbook As Excel.Workbook     Dim oWorkbooks As Excel.Workbooks ...
Score ADO.NET adapter save DataSet - multiple tables changes
DG - 12 May 2006 12:24 PM - 3 messages
I have a dataset with two tables, and i modified rows in both. Can i use adapter to update both tables in one command. Also i'd like to do that with transaction (all or none changes apply) Is it possible to use VS generated adapters for this purpose? ...
Score verbatim princo traxdata benq tdk imation
for your interest - 12 May 2006 9:33 AM - 1 message
<HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft DHTML Editing Control"> <TITLE></TITLE> </HEAD> <BODY> <P>verbatim <A href="[link]">[link] dvd barato dvd-r dvd+r cd-r ...
Score Connection.Close or End Using or Both
Dick - 12 May 2006 9:32 AM - 8 messages
I know that a connection is not closed when it goes out of scope so I would usually code a Try...Finally block. But does Using...End Using achieve the same? i.e. is the following code overkill?             Using _connection As New SqlClient.SqlConnection ...
Score How to BeginTransmit with two TabeAdapter method
ad - 12 May 2006 7:09 AM - 3 messages
I use two TableAdapter update method to udpate the Database after user press OK button. The two TableAdapter will update two different tables in a database. How can I do BeginTransmit-roolback when user press OK. ...
Score Building SQL for Fields and Memo-type fields
Alex Maghen - 11 May 2006 11:04 PM - 7 messages
Hi. I'm building a SQL query that will perform an INSERT into an Access MDB. Most are Text fields but one is a Memo-type field. My question is, is there a function I can call which escapes characters that ...
Score VS.NET 2003, ADO.NET 1.1 and Access 2000: Getting a Concurrency violation
Rod - 11 May 2006 10:47 PM - 7 messages
I have written a Visual Studio .NET 2003 app, using ADO.NET to retrieve several hundred records out of an Access 2000 database, and putting them all into a DataSet.  Then my app goes against a SQL Server 2000 database, ...
Score Old topic scratched again -- "already an open DataReader"
Chirag Shukla - 11 May 2006 9:02 PM - 3 messages
Guys, I didnt need multiple recordsets open in .NET until today and it seems that only 1 datareader can be opened per connection. I think that is really silly. Using SQL Server 2000 and VB.NET (and C#), I wanted to ...
Score 'Incremental Search' of data base or "Wheres the 'Seek' method
Terry - 11 May 2006 7:20 PM - 5 messages
Hi, I am both new to .Net (coming from VB6 and DAO) and to this news group.  I am trying to convert some code from VB6 that uses a "record set" to help the user locate a specific record. ...
Score SQL_IDENTIFIER_QUOTE_CHAR equivalent in OleDbLiteral
sudha - 11 May 2006 7:17 PM - 2 messages
NETters, If you have a sql query that has spaces in the table name or the column name, you need to qualify them using identifier quotes. For example, this quote prefix and suffix for SQLServer are "[" and "]" respectively. OLEDB supports a mechanism to get this metadata using ...
Score .NET Transactions across multiple business Objects
C - 11 May 2006 6:17 PM - 3 messages
Hi, I have an ASP.NET app with a Business Layer and a DataLayer. In my DataLayer I user the Microsoft Data ApplicationBlocks (Sqlhelper class) From my ASP.NET Page I call a Save Method on two different Business Objects ...
Score GenerateDirectDBMethods issue with VS2005 DataSet wizard
amit - 11 May 2006 1:02 PM - 1 message
I am using the dataset wizard in 2005 to create typed datasets for tables in my db. I am using the existing stored procedure option and specifing which stored procedures to use for updates etc. My problem is, some table adapters, it will generate the direct CRUD ...
Score editing XML data relation line
brookhartc - 11 May 2006 10:19 AM - 1 message
I am working on a program where I am retrieving data from an Access database  through one common dataset. I have already put the database connection  component on the form as well as the two data adapters. Here is where I am  having problems. ...
Score Is there any DataView.RowFilter 'changedevent' ?
idiot - 11 May 2006 7:21 AM - 2 messages
It seems that when I change the DataView.RowFilter property,BindingManagerBase.PositionChanged event is not trigged. ...
Score Bulk insert into DB using ADO.net 1.1
utanka - 11 May 2006 6:02 AM - 2 messages
Hi all, I have a requirement where in I have to insert high volume records into a master-detail pair of tables (2000 rows into master & 100000 into detail). This is going to be a user initiated weekly task. Since there ...
Score Is it possible to know if a connection is being used by a datareader?
Lu Jimmy - 11 May 2006 3:50 AM - 5 messages
Is it possible to know if a connection is being used by a DataReader(or others)?  So I can run the ExecuteReader command without error.  Thanks Jimmy ...
Score I need badly to REMOVE a row from a DataGrid without effecting the DB
Jordan Kaufman - 11 May 2006 12:57 AM - 3 messages
Hi, I need to remove a row from a DataGrid without effecting the Database. I've seen this question posted on the all over but never answered. (f it helps I use the datagrid to export an excel file, but need to preen ...
Score NEED BADLY to remove (programmatically) a row from a DataGrid without deleting it from the DataBase
Jordan Kaufman - 11 May 2006 12:56 AM - 4 messages
Hi, I need to remove a row from a DataGrid without effecting the Database. I've seen this question posted on the all over but never answered. (f it helps I use the datagrid to export an excel file, but need to preen ...
Score ReadXMLSchema Doesn't Work
Dale - 10 May 2006 7:50 PM - 10 messages
I am attempting to apply a schema to a data set, and it doesn’t seem to work at all. It’s like my data set completely ignores ReadXMLSchema. To test this, I ran the code below: ds.ReadXmlSchema("E:\\ foo.xsd"); ...
Score The type initializer threw an exception.
JohnZing - 10 May 2006 7:19 PM - 3 messages
When i try to open an OleDb connection (access) VS throws the following error The type initializer for 'System.Transactions.Diagnostics.DiagnosticTrace' threw an exception. Tried to find on google and no sucess... please help... thanks     Private Sub OpenConnection() ...
Score Problem with updating MDF Data file as opposed to updating a running SQL Server DB
multiformity - 10 May 2006 5:59 PM - 10 messages
I posted this before, with no response, but now I have boiled the problem down to it's core... ( see [link] for the original post ) ...
Score Batch Update Problem
JT - 10 May 2006 5:05 PM - 5 messages
Hi, I am porting an ADO.NET 1.1 project to version 2.0 and trying to take advantage of the dataAdapter's UpdateBatchSize property.  When I set this to 0 and change my updatedRowSource to either NONE or OUTPUT PARAMS, I get the ...
Score Installed printers
Gabriel Vasquez - 10 May 2006 4:52 PM - 1 message
Hi everyone!! In my application .net I'm using "Winspool.drv"  functions to send files directly to printer.  My printer is on net but it does not recognized by PrinterSettings property. Only recognize "Microsoft Office Document Image Writer" or locals prints. Somebody know how I can to accomplish this? or ...
Score DB2 - OleDb - Unable to use Catalog Library List
berandor - 10 May 2006 4:41 PM - 1 message
I am attempting to use the "Catalog Library List" feature of the IBMDA400 oledb provider.  My connection string is as follows: new OleDbConnection("Provider=IBMDA400.DataSource.1;Data Source=MyDS;User ID=uid;Password=pwd;Initial Catalog=MyCat;Catalog ...
Score How to upload Dataset read from XML to SQL Server Database
Neo - 10 May 2006 3:44 PM - 3 messages
Hello All, I am using SQL Server 2000 and .Net 2.0. I want to import XML files into database. SQLXMLBulkLoad is useless since, our schema doesn't have annotation required by that. But I could read schema and xml file in dataset without problem. Now ...
Score Getting value in GridView before UpdateCommand
David - 10 May 2006 2:30 PM - 1 message
I have a GridView that I need to identify when one of the Text fields changes, I need to run another process to update a file system folder name. I have the code to rename the file folder, but am not sure how to get the ...
Score How to manage DBNull
ad - 10 May 2006 1:49 PM - 2 messages
I use the new feature of TableAdapter in VS2005. There is a DataSet name dsSt, I want to fetch the value of a field in a datarow. I use the code:    foreach (dsSt.StRow rowSt in dtSt.Rows) ...
Score datasource question 2.0
WebBuilder451 - 10 May 2006 1:06 PM - 1 message
I need to reference elements in a datasource from a dropdown list selection. 1. I have a datasource with 20 fields bound to a ddl. 2. a selection is made. 3. i want to reference column 12 of the current selected index and use this ...
Score OracleNumber decimal point formatting
Daniel Stankiewicz - 10 May 2006 12:48 PM - 2 messages
I'm connecting with an Oracle database from my .NET application, using System.Data.OracleClient namespace. Did anybody face the problem of formatting numbers of type System.Data.OracleClient.OracleNumber according to a specified locale? The method OracleNumber.ToString() doesn't take any parameters like ...
Score OracleClient (.NET 1.1) : returned OracleDataReader values are truncated
panik - 10 May 2006 11:03 AM - 4 messages
Hello, I am currently trying out a connection with an oracle database. We're using the .NET framework 1.1 and the oracle version is Oracle8i. I am using the OracleClient provider (System.Data.OracleClient). Yet, when returning a simple query (SELECT * FROM SomeTable), into an ...
Score Newbie questions - Data consistency
nick_nw - 10 May 2006 8:14 AM - 5 messages
Hi, What techniques/machanisms are available in ADO.Net to ensure that prior to a user committing an update they are working with the latest data?  E.g. One DB, multiple user connections.  Users datasets are refreshed manually by user.  User works with data and commits change (presumably ...
Score Getting a file's ContentType
Nathan Sokalski - 10 May 2006 5:45 AM - 8 messages
I would like to be able to get the ContentType of a file programmatically (for example, I want *.txt files to return "text/plain"). I could not find a way to do this using VB.NET's classes, but I am also somewhat new to using ...
Score HowTo Compare DataSets
sjoshi - 10 May 2006 2:14 AM - 5 messages
Hello I have a DataSet (dt) defined as having fields, Filename-string (PK), Filesize-long. Now I have dt1 and dt2 of type dt with same data for Filename but some with different data for Filesize. I want to get a DataSet of type dt which has just the changed data from ...
Score simplified null check
Smokey Grindle - 9 May 2006 7:15 PM - 4 messages
I have a sproc that returns null, true or false, and I have the following code If cmd.ExecuteScalar Is DBNull.Value Then Return False Else Return CBool(cmd.ExecuteScalar) End If is there any way to simplify this so i dont have to execute the command ...
Score Connection Pooling
C - 9 May 2006 5:07 PM - 2 messages
Hi, I am developing an ASP.Net app with SQL Server 2000. I am using the Microsoft Data Application Blocks. My user size is 150 users in total. Do I need to look at connection pooling? Any advice is appreciated. ...
Score Datatable Advice
Vayse - 9 May 2006 4:16 PM - 4 messages
Hi This is a project I'm doing in my own time, and I'm wondering what the best method is. This app is to calculate training on players in an online football game. Each player has several skills, but for simplicity, lets just say 3 skills - ...
Score Datetime field in Data grid not displaying time
Tony Murnion - 9 May 2006 3:32 PM - 3 messages
In vb.net, I have set up a connection to a SQL server using the sqldataadapter, a SQLconnection, a dataset, and a datagrid to display the dataset.  When I display the grid, the DateTime field in the grid only shows ...
Score Need advice for Parent Child insert in transaction mode
sandi - 9 May 2006 2:33 PM - 4 messages
I have Parent child table as decribe below: Parent Table name = TESTPARENT 1.    counter   bigint isIdentity=Yes  Increment=1  Seed=1 2.    customer  nChar(10) Child Table name = TESTCHILD ...
Score Problem With Clob and Blob
Altaf Al-Amin Najwani - 9 May 2006 9:13 AM - 2 messages
I am using .net and oracle 9i. I created one store procedure in oracle who takes clob field as input and inserts in table. In .net I am using OracleClient i-e system.data.oracleclient namespace class to call this store ...
Score Row Status Dataset
Marcus Kraus - 9 May 2006 5:42 AM - 5 messages
Hi everybody... first of all "please excuse my bad english"  :-) I need to control the RowStatus in a Dataset.. e.g. I want to insert a Row in a Dataset which will not be updated when I uses xxx.Update()......So I want to have this Row to be "Not Modified" and ...
Score DataAdapter Truncation: Feature or Bug?
pearsons_11114 - 9 May 2006 3:28 AM - 3 messages
Calling DataAdatper.Update silently truncates Decimal fields that exceed the specified scale of the underlying database type. For example, with a scale of 2, the value 1.666 is truncated to 1.66 instead of rounded to 1.67 as you ...
Score Using LIKE in selects
Snorlax - 8 May 2006 9:39 PM - 6 messages
Hello. I'm having trouble using the SQL LIKE keyword in the WHERE clause. Specifically I have trouble using parameters like so (running against SQL Server):   SqlCommand cmd = new SqlCommand(     "SELECT * FROM Users WHERE first_name LIKE @first_name AND last_name ...
Score Open exact globe's btrieve? (pervasive)
Edwin Knoppert - 8 May 2006 9:02 PM - 4 messages
I want to use OLEDB to open .BTR files. They should (afaik) be opened using pervasive but i don't know how. The computer using this can work with Exact but the connection link dialog does not show desired driver. ...
Score Dynamic SQL
tim - 8 May 2006 8:49 PM - 3 messages
Hi, I have a db table that is used as a mapping to pull data out of another data table.  I basically need to create a dynamic sql based on the data from the table (field names).  Is the best way is to use loop through the datatable ...
Score SpDiscoverParameterSet Fails
porko - 8 May 2006 8:25 PM - 2 messages
How can I provide a connection string for my ASP.NET 2.0 application and SQL Express .MDF that will get around this error?    This is surely security related - the app and database routines work fine when I'm running/testing under Visual Studio 5.0, but when I try to run under ...
Score Bugs in Expressions particularly involving Relations
James - 8 May 2006 6:36 PM - 4 messages
I have an ASP.Net database webapp running on .Net 1.1 and I have unfortunately built into it a lot of code making use of Relations and expression-type DataColumns containing .Parent and .Child references. Now it has got moderately complex I am running into huge problems with ...
Score Error: Pending Requests working on this transaction
James Vitale - 8 May 2006 5:54 PM - 3 messages
Exception: System.Data.SqlClient.SqlException: The transaction operation cannot be performed because there are pending requests working on this transaction. ASP.NET 2.0 running on Windows Server 2003 with MS SQL Server 2005 I have a web page that very simply takes a query string and inserts data ...
Score Query Timeout Expired Using SELECT/WHERE
Scott - 8 May 2006 3:05 PM - 6 messages
All, I am using C# to a SQL Server 2005 database using an SqlDataAdapter, SqlCommand and SqlDataReader. When running the query I receive the following exception: "Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding." ...
Score Load XML file created from ADO 2.x
Dan Reber - 8 May 2006 2:22 PM - 1 message
Can an XML file created from an ADO 2.8 recordset using rsData.Save sFileName, adPersistXML be loaded into an ADO.net DataSet? Thanks Dan ...
Score [REPOST] SMO Table Owner
Scott - 8 May 2006 12:33 PM - 2 messages
Using SMO, how do I get a table's ower? I'm scripting out some tables to disk based on the table's name, but I'm getting a clash on the file name because the same table name exists with different owners. I want to encorporate the ...
Score DataReader .HasRows but returns 'Invalid attempt to read when no data is present' error
Assimalyst - 8 May 2006 12:30 PM - 4 messages
Hi, I am using a stored procedure to extract data from an SQL server database using a datareader. The datareader .HasRows returns true, i have also checked this with query analyser, but when i attempt to use a returned value to ...
Score How to read a csv file into DataTable
ad - 8 May 2006 10:38 AM - 5 messages
I have a .csv file. How can I read it into DataTable? ...
Score DataSet ReadXmlSchema doesn't support <xs:any>
Garrek - 8 May 2006 4:32 AM - 1 message
If someone could please confirm this is a problem or notify me of a work-around I'd really appreciate the help.  I've pulled some hair out on this one. I need to support an Element in the Xml schema that can support any XHTML ...
Score Shot in the Dark
tomb - 8 May 2006 2:55 AM - 12 messages
Is it possible to populate a datatable with the contents of a string variable?  It's not in xml format, but instead it is the contents of a csv.  I realize I'm grasping, and I did several searches online and ...
Score Comparing DefaultValue to DataRow column values
James - 7 May 2006 11:05 PM - 6 messages
The code below should it seems to me work but doesnt: bool rowChanged = false; foreach (DataColumn col in row.Columns)   if (col != row.Table.PrimaryKey[0])     if (col.DefaultValue != row[col])       rowChanged = true; ...
Score How to read the first sheet in Excel
ad - 7 May 2006 9:41 PM - 4 messages
We can use the codes below to read the sheet name mySheet in a Exel file. string strConn = "Provider=Microsoft.Jet.Oledb.4.0;Data Source=" + Server.MapPath("Book1.xls") + ";Extended Properties=Excel 8.0"; OleDbConnection conn = new OleDbConnection(strConn); ...
Score SQL Aggregation Query
Liddle Feesh - 7 May 2006 5:06 PM - 3 messages
Dear Group, I appreciate that you are all busy; however I have a SQL programming task that I can't seem to get my head around at the moment. Any assistance will be very warmly appreciated. I have the following SQL view, which returns a Data Table, STOCK_TRADE, with ...
Score Aggregating groups of rows using SQL
Liddle Feesh - 7 May 2006 4:58 PM - 6 messages
Dear Group, I have a SQL coding problem, which I hope that you can help me with! I have the following SQL view, which returns a Data Table, STOCK_TRADE, with the following data.. CUSTOMER STOCK_CODE QUANTITY PRICE  DATE J. BLOGGS MSFT  1000  535.50  10/05/2006 ...
Score .Net Reporting against Oracle
Larry Dooley - 7 May 2006 1:49 PM - 4 messages
Here's my issue.  We've decided to replace a very critical (without it the business would lose lots of money) departmental reporting system with a built from scratch system based on .NET.  The key component is a ...
Score The Connection string to Excel
ad - 7 May 2006 1:21 PM - 2 messages
I use the ConnectionString below to read data from excel files. It succss with some excel files, but fail with others. I think the excel file have different versions. How can I make a general connection string which can read Excel for ...
Score Run SQL comand with String from SQL Script
MATT - 7 May 2006 7:17 AM - 4 messages
Using SQL 2005 I generated a SQL Script to create a DB Table and columns.  in VB.NET i use the StreamReader to read this file to a string, and I want to execute the script in my application, so the app can create an identical ...
Next »