active questions tagged insert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T11:18:51Zhttp://stackoverflow.com/feeds/tag/inserthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1913017/why-does-insert-from-php-to-mysql-mis-handle-question-marks-sometimes-but-from-c0Why does insert from php to mysql mis-handle question marks sometimes, but from command line never?peter2009-12-16T07:53:08Z2009-12-16T08:08:37Z
<p>I have a simple table:</p>
<pre><code>describe chat_public_messageboard ;
+--------------+---------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------+---------------+------+-----+---------+----------------+
| message_id | int(100) | NO | PRI | NULL | auto_increment |
| message_from | varchar(255) | NO | | NULL | |
| message_to | varchar(20) | NO | | NULL | |
| message_body | tinytext | NO | | NULL | |
| message_time | varchar(50) | NO | | NULL | |
| welcome_msg | enum('0','1') | NO | | 0 | |
+--------------+---------------+------+-----+---------+----------------+
</code></pre>
<p>When I do an insert from the terminal, it works fine:
select *
314 | sweety_margs | daffy | what did you say? </p>
<pre><code>INSERT INTO chat_public_messageboard ( message_from , message_body , message_time , message_to , welcome_msg ) VALUES ( 'pdz' , 'what did you say?\n' , '1260948972' , 'pdz2' , 1 ) "
</code></pre>
<p>But when I send this exact query through the mysql db->query() function, the question mark turns to NULL</p>
<pre><code>$query = $querystring = "INSERT INTO chat_public_messageboard ( message_from , message_body , message_time , message_to , welcome_msg ) VALUES ( 'pdz' , 'what did you say?\n' , '1260948972' , 'pdz2' , 1 ) " ;
db->query($querystring);
</code></pre>
<p>-</p>
<pre><code>select *
314 | sweety_margs | daffy | what did you sayNULL
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1912898/androidis-there-a-better-way-to-insert-and-or-update-a-database-entry1Android:Is there a better way to insert and/or update a database entry?Jim D.2009-12-16T07:16:56Z2009-12-16T07:44:24Z
<p>I have a database containing a userId and a note. The user doesn't know if there already is a note in the DB so they write one and click the 'Submit' button. I want to insert this note if there is no note for the userId or update that userId's already existing note:</p>
<pre><code> notesDb.open();
boolean updateResult = notesDb.updateMessage(
userId,
details_notes_input.getText().toString());
if(updateResult == true) {
Log.d("databaseTester", "Updated entry into table");
}
else {
Log.d("databaseTester", "FAILED to update entry into table");
long insertResult = notesDb.insertMessage(
userId,
details_notes_input.getText().toString());
if(insertResult == -1){
Log.d("databaseTester", "Failed to insert entry into table");
}
else{
Log.d("databaseTester", "Inserted entry into table");
}
}
notesDb.close();
</code></pre>
<p>So, I'm pretty much attempting to 'update' an entry and if I fail then I attempt to 'insert' it. I don't know SQL very well, but I would think there would be a better way. Thanks.</p>
http://stackoverflow.com/questions/1908825/query-regarding-sql-insert-in-sql-server0Query regarding SQL Insert in SQL Server?Azhar2009-12-15T16:56:21Z2009-12-16T06:03:17Z
<p>I am using SQL Server 2008 and developing a project which is in maintenance phase. </p>
<p>I want to insert record in a table whose primary key is an Integer but not an identity. e.g. table name is <code>tblFiles</code> and fields are <code>ID, FileName, FileContent</code>. </p>
<p>Actually that table is in use so I don’t want to make any schema change in it. And I want the key after row insertion because I have to put that in another table. Existing values in the Id column are different integer, means not in sequence. </p>
<p>So I want the query that also returns me the Id value. So I want to insert only <code>FileName</code> and <code>FileContent</code> and some sort of sql to whom I can embed in my insert query which insert a unique Id and also send me that id </p>
http://stackoverflow.com/questions/1907380/insert-into-sql-query-in-wpf1insert into sql query in wpfneki2009-12-15T13:14:17Z2009-12-15T14:50:36Z
<p>Hello everyone i am new in wpf. so i have got problems with it. if you help me, i will be so pleased. thanks everyone in advance.</p>
<p>My problem is, can not insert into name inside database in wpf. how can i fix it? my codes as follows; </p>
<pre><code>private void button1_Click(object sender, RoutedEventArgs e)
{
try
{
string SqlString = "Insert Into UserInformation(name) Values (?)";
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|Cell.mdb;Persist Security Info=True"))
{
using (OleDbCommand cmd = new OleDbCommand(SqlString, conn))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("name", textBox1.Text);
conn.Open();
cmd.ExecuteNonQuery();
}
}
}
catch (Exception ex)
{ }
}
</code></pre>
http://stackoverflow.com/questions/546101/sql-update-trigger0SQL Update TriggerSem Dendoncker2009-02-13T14:24:07Z2009-12-15T04:14:53Z
<p>Hi,</p>
<p>I have the following issue.
We have a user table, every user has an unique email and username. We try to do this within our code but we want to be sure users are never inserted (or updated) in the database with the same username of email.
I've added a BEFORE INSERT Trigger which prevents the insertion of duplicate users.</p>
<pre><code>CREATE TRIGGER [dbo].[BeforeUpdateUser]
ON [dbo].[Users]
INSTEAD OF INSERT
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
DECLARE @Email nvarchar(MAX)
DECLARE @UserName nvarchar(MAX)
DECLARE @UserId int
DECLARE @DoInsert bit
SET @DoInsert = 1
SELECT @Email = Email, @UserName = UserName FROM INSERTED
SELECT @UserId = UserId FROM Users WHERE Email = @Email
IF (@UserId IS NOT NULL)
BEGIN
SET @DoInsert = 0
END
SELECT @UserId = UserId FROM Users WHERE UserName = @UserName
IF (@UserId IS NOT NULL)
BEGIN
SET @DoInsert = 0
END
IF (@DoInsert = 1)
BEGIN
INSERT INTO Users
SELECT
FirstName,
LastName,
Email,
Password,
UserName,
LanguageId,
Data,
IsDeleted
FROM INSERTED
END
ELSE
BEGIN
DECLARE @ErrorMessage nvarchar(MAX)
SET @ErrorMessage =
'The username and emailadress of a user must be unique!'
RAISERROR 50001 @ErrorMessage
END
END
</code></pre>
<p>But for the Update trigger I have no Idea how to do this.
I've found this example with google:
<a href="http://www.devarticles.com/c/a/SQL-Server/Using-Triggers-In-MS-SQL-Server/2/" rel="nofollow">http://www.devarticles.com/c/a/SQL-Server/Using-Triggers-In-MS-SQL-Server/2/</a>
But I don't know if it applies when you update multiple columns at once.</p>
<p>Can anyone help me out?</p>
<p>Kind regards,
Sem</p>
<p>EDIT:</p>
<p>I've tried to add a unique constraint on these columns but it doesn't work:</p>
<pre><code>Msg 1919, Level 16, State 1, Line 1
Column 'Email' in table 'Users' is of a type
that is invalid for use as a key column in an index.
</code></pre>
http://stackoverflow.com/questions/1714525/insert-value-into-sql-server0Insert value into SQL Servernilesh2009-11-11T11:14:27Z2009-12-14T08:40:20Z
<p>I want to insert value into SQL Server but there is problem is I pass both value in parameter then it's not insert otherewise if i selecting one value then it's insert my database name is sample and table is item</p>
<p>this is perfect insert statement or not ?</p>
<pre><code>try
{
int val = stmt.executeUpdate("INSERT item (patientid,itemid) VALUES(nPatientID," + LrBn.TestID+ ")");
out.println("1 row affected");
}
catch (SQLException s)
{
System.out.println("SQL statement is not executed!");
}
<%
if(testname!=null)
{
LrBn.beginInsert();
for(int i=0; i<testname.length; i++)
{
nCount++ ;
LrBn.ResultID=0;
try
{
LrBn.TestID = Integer.parseInt(testname[i]) ;
} catch( NumberFormatException ex)
{
LrBn.TestID = 0 ;
}
LrBn.GroupID = nGroupID ;
LaBn.locateRecord(LrBn.TestID) ;
short nemergencyType = com.hims.emergencyType.normal ;
try
{
nemergencyType = Short.parseShort(request.getParameter("emergencyType"));
}
catch( NumberFormatException ex)
{
nemergencyType = com.hims.emergencyType.normal ;
}
LrBn.Emergency = nemergencyType;
LrBn.ResultType = LaBn.TestResultType ;
LrBn.PatientID = nPatientID ;
LrBn.DoctorID = LogUsr.DoctorID;
LrBn.UnitID = LogUsr.UnitID ;
LrBn.RequestTime = com.webapp.utils.DateHelper.requestDateTime(request, "RequestTime");
LrBn.CollectionTime = null;
LrBn.ResultTime = null;
LrBn.CollectedBy = 0 ;
LrBn.TestDoneBy = 0 ;
LrBn.PathologyUnitID = 0 ;
LrBn.BoolValue = 0;
LrBn.ScalarValue = null ;
LrBn.DescValue = null ;
LrBn.TestStatus = com.hims.TestStatusType.REQUESTED ;
LrBn.TestCharges = LaBn.TestCharge ;
LrBn.PaymentStatus = com.hims.PaymentStatus.PENDING ;
LrBn.continueInsert();
Class.forName("net.sourceforge.jtds.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:jtds:sqlserver://localhost:1433/sample", "sa", "sa1234");
java.sql.Statement stmt = conn.createStatement();
try
{
int val = stmt.executeUpdate("INSERT item (patientid,itemid) VALUES(nPatientID," + LrBn.TestID+ ")");
out.println("1 row affected");
}
catch (SQLException s)
{
System.out.println("SQL statement is not executed!");
}
stmt.close();
conn.close();
} // end for
LrBn.endInsert();
}
%>
</code></pre>
http://stackoverflow.com/questions/1896930/sqlite-out-of-memory-when-preparing-insert-statement0SQLite Out of Memory when preparing insert statementMB2009-12-13T16:15:59Z2009-12-13T16:15:59Z
<p>I have a problem with my app it opens this database and selects rows from it ok, </p>
<p>Then when I want to add new rows using the following code and I always get the following problem at the execution of the prepare_V2.</p>
<p>*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error while creating update statement. 'out of memory''</p>
<p>code is .....</p>
<pre><code>static sqlite3 *database = nil;
static sqlite3_stmt *addStmt = nil;
- (BOOL)addUserprofile {
addStmt = nil; // set to force open for testing
database = nil; // set to force creation of addstmt for testing
if (database == nil) { // first time then open database
NSString *databaseName = @"UserProfile.db";
// Use editable database paths
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
NSString *databasePath = [documentsDir stringByAppendingPathComponent:databaseName];
NSLog(@"path = %@",databasePath);
NSLog(@"opening Database");
sqlite3 *database;
// Open the database from the users filessytem
if (sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK) {
NSLog(@"Database Open");
}
else {
NSLog(@"Database did not open");
}
}
if(addStmt == nil) {
NSLog(@"Creating add stmt");
const char *sql = "INSERT INTO Profile (ProfileName) VALUES(?)";
if(sqlite3_prepare_v2(database, sql, -1, &addStmt, NULL) != SQLITE_OK) {
NSAssert1(0, @"** Error while creating add statement. '%s'", sqlite3_errmsg(database));
success = NO;
return success;
}
}
sqlite3_bind_text(addStmt, 1, [ProfileName UTF8String], -1, SQLITE_TRANSIENT);
</code></pre>
http://stackoverflow.com/questions/1891678/what-is-the-fastest-way-to-insert-a-large-amount-of-records-into-a-sql-server-db3What is the fastest way to insert a large amount of records into a SQL Server DB?esac2009-12-12T00:10:21Z2009-12-12T00:22:42Z
<p>I need to insert millions of records being read from disk into SQL server. I am parsing these from a file on one machine, in what is a single-threaded process.</p>
<p>Ideally I would want it to perform well if the SQL server is local or remote. It has to be done programatically in C#.</p>
http://stackoverflow.com/questions/207496/c-binary-search-tree-insert-via-recursion0C++ Binary Search Tree Insert via RecursionDoug2008-10-16T05:05:14Z2009-12-11T09:01:45Z
<p>So my code is below. I'm not getting any errors and it places everything in the node just fine. But based on my debug statements Everytime anything is inserted it's finding the root. I'm not sure if that is right. But according to output file for the assignment, my answers are different when it comes to the height of the tree, the traversals, and I just flat am still having troubles with my leaf count function. Another story though.</p>
<p>Based on the debug statements it looks like everything is going right where they should. But I figure I might need fresh eyes. I don't see how my traversals could change at all since it is really only a matter of where I'm proccessing the node that should effect the Inorder, preorder, and postorder. </p>
<pre><code>template <class T>
void BT<T>::insert(const T& item)
{
Node<T>* newNode;
newNode = new Node<T>(item);
insert(root, newNode);
}
template <class T>
void BT<T>::insert(struct Node<T> *&root, struct Node<T> *newNode)
{
if (root == NULL)
{
cout << "Root Found" << newNode->data << endl;
root = newNode;
}
else
{
if (newNode->data < root->data)
{
insert(root->left, newNode);
cout << "Inserting Left" << newNode-> data << endl;
}
else
{
insert(root->right, newNode);
cout << "Inserting Right" << newNode->data << endl;
}
}
}
</code></pre>
<p>My height function is as follows just in case my insert is actually fine.</p>
<pre><code>template <class T>
int BT<T>::height() const
{
return height(root);
}
template <class T>
int BT<T>::height(Node<T>* root) const
{
if (root == NULL)
return 0;
else
{
if (height(root->right) > height(root->left))
return 1 + height(root-> right);
return 1 + height(root->left);
}
}
</code></pre>
http://stackoverflow.com/questions/1882890/jquery-insert-text-to-textarea0jQuery: Insert text to textareatarnfeld2009-12-10T18:06:46Z2009-12-10T18:13:14Z
<p>How can i utilize jQuery to insert text at the cursor into a textarea.</p>
http://stackoverflow.com/questions/1878263/nhibernate-receiving-index-out-of-range-while-calling-flush-for-insert-operation0NHibernate: receiving index out of range while calling flush for insert operationBrian2009-12-10T02:19:16Z2009-12-10T12:00:01Z
<p>I've spent the better part of my day trying to solve this message while using NHibernate: "Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index"</p>
<p>My update and delete work just fine but the call to flush after a call to save() does not work. I don't think it will be useful to post all of the code (there's a lot) because I'm not sure what you'll need to see at this point. My data access object I'm trying to save uses a composite key if that helps. Also, I'm using NHibernate.Mapping.Attributes to create my mapping. </p>
<p>It appears that in my stack trace NHibernate is attempting to send an invalid number of parameters to the ADO.Net class for the insert operation. That being said, I have trace set to true in order to view sql statements but the error is raised prior to the sql statement being sent to the output so I'm not sure what it's attempting to build..</p>
<pre><code>public void Insert(ProddataDAO Entity)
{
Entity.PSEQ = GetNewSeqID(Entity.PCUST); // <- because I'm using a composite key, this function gets my a unique value by a group
NHibernateHelperCGC.CurrentSession.Save(Entity);
NHibernateHelperCGC.CurrentSession.Flush(); // <-This raises the error
}
</code></pre>
<p>at System.Collections.ArrayList.get_Item(Int32 index)
at IBM.Data.DB2.iSeries.iDB2ParameterCollection.System.Collections.IList.get_Item(Int32 index)
at NHibernate.Type.DecimalType.Set(IDbCommand st, Object value, Int32 index)
at NHibernate.Type.NullableType.NullSafeSet(IDbCommand cmd, Object value, Int32 index)
at NHibernate.Type.NullableType.NullSafeSet(IDbCommand st, Object value, Int32 index, ISessionImplementor session)
at NHibernate.Type.ComponentType.NullSafeSet(IDbCommand st, Object value, Int32 begin, ISessionImplementor session)
at NHibernate.Persister.Entity.AbstractEntityPersister.Dehydrate(Object id, Object[] fields, Object rowId, Boolean[] includeProperty, Boolean[][] includeColumns, Int32 table, IDbCommand statement, ISessionImplementor session, Int32 index)
at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session)
at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session)
at NHibernate.Action.EntityInsertAction.Execute()
at NHibernate.Engine.ActionQueue.Execute(IExecutable executable)
at NHibernate.Engine.ActionQueue.ExecuteActions(IList list)
at NHibernate.Engine.ActionQueue.ExecuteActions()
at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session)
at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event)
at NHibernate.Impl.SessionImpl.Flush()
at WTS.Data.DB2.CGC.ProddataRepository.Insert(ProddataDAO Entity) in C:\Documents and Settings\briant\My Documents\Visual Studio 2008\Projects\WTSCGCDAL\WTSCGCDAL\ProddataRepository.cs:line 73
at WTS.WTSCGCAppInterface.ProductionDataUserControlBase.TestInsert() in C:\Documents and Settings\briant\My Documents\Visual Studio 2008\Projects\WTSCGCAppInterface\WTSCGCAppInterface\ProductionDataUserControlBase.cs:line 483
at WTSCGCAppInterface.Window1.Button_Click_1(Object sender, RoutedEventArgs e) in C:\Documents and Settings\briant\My Documents\Visual Studio 2008\Projects\WTSCGCAppInterface\WTSCGCAppInterface\Window1.xaml.cs:line 48
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
at System.Windows.Controls.Primitives.ButtonBase.OnClick()
at System.Windows.Controls.Button.OnClick()
at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e)
at System.Windows.UIElement.OnMouseLeftButtonUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
at System.Windows.UIElement.CrackMouseButtonEventAndReRaiseEvent(DependencyObject sender, MouseButtonEventArgs e)
at System.Windows.UIElement.OnMouseUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
at System.Windows.Threading.Dispatcher.Invoke(DispatcherPriority priority, Delegate method, Object arg)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at System.Windows.Application.Run()
at WTSCGCAppInterface.App.Main() in C:\Documents and Settings\briant\My Documents\Visual Studio 2008\Projects\WTSCGCAppInterface\WTSCGCAppInterface\obj\Debug\App.g.cs:line 0
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()</p>
http://stackoverflow.com/questions/1871610/adding-new-rows-to-uitableviewcell0Adding new rows to uitableviewcellNithin2009-12-09T04:39:27Z2009-12-09T04:47:13Z
<p>In my application,i will be displaying only one row on the uitableview initially. I want to increase the rows as user loads the previous row with data(an uiimage, here). Asof now i'm returing value 1, in numberOfRowsInSection: method, sincei don't know how to implement it in the required way. Pls help..
My cellForRowAtIndexPath method is `- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CustomCellIdentifier = @"CustomCellIdentifier";</p>
<pre><code> CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CustomCellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CustomCellIdentifier ] autorelease];
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
for (id currentObject in nib){
if ([currentObject isKindOfClass:[CustomCell class]]){
cell = (CustomCell *)currentObject;
cell.viewController = self;
break;
}
}
}
if (j<15){
cell.imageView.image = nil;
if (count!=0)
{
@try{
NSInteger row = [indexPath row];
cell.imageView.image = [array objectAtIndex:row];
}
@catch (NSException* ex) {
NSLog(@"doSomethingFancy failed: %@",ex);
}
}
}
cell.showsReorderControl = YES;
return cell;
[array release];
</code></pre>
<p>}`</p>
<p>that if conditon and count is nothing but just for checking the correct functioning of the mutable array, 'array'.</p>
http://stackoverflow.com/questions/1870800/qsqltablemodel-insertrecord-is-very-slow0QSqlTableModel.insertRecord() is very slowGlenn2009-12-09T00:13:18Z2009-12-09T00:13:18Z
<p>Hello,
I am using PyQt to insert records into a MySQL database. the code basically looks like</p>
<pre><code>self.table = QSqlTableModel()
self.table.setTable('mytable')
while True:
rec = self.table.record()
values = getValueDictionary()
for k,v in values.items():
rec.setValue(k,QVariant(v))
self.table.insertRecord(-1,rec)
</code></pre>
<p>The table currently has ~ 50,000 rows in it.
I have timed each line and found that the insertRecord function is taking ~5 seconds to execute, which is unacceptably slow. Everything else is fast. </p>
<p>For comparison, I also made a version of the code that uses </p>
<pre><code>QSqlQuery.prepare("INSERT INTO mytable (f1,f2,...) VALUES (:f1, :f2,...)")
query.bindValue(":f1",blah)
query.exec_()
</code></pre>
<p>In this case, the whole thing takes only ~ 20 milliseconds, so the delay is not in the database connection as far as I can tell.</p>
<p>I'd really prefer to use the QtSql stuff instead of the awkward MySQL commands. Any ideas on how to add a bunch of rows to a MySQL database with QtSql instead of raw comands and with reasonable speed?</p>
<p>Thanks,
G</p>
http://stackoverflow.com/questions/1867167/oracle-commit-kills1oracle commit killsHoax2009-12-08T14:03:38Z2009-12-08T23:18:18Z
<p>hi</p>
<p>I got an oracle db 10g, here a table as an example</p>
<pre><code>create table Dienstplan
(
Montag Number(2),
Dienstag Number(2),
Mittwoch Number (2),
Donnerstag Number (2),
Freitag Number (2),
Samstag Number (2),
Sonntag Number (2),
gueltigAb DATE default SYSDATE NOT NULL,
PersonalNr Number(10) references Mitarbeiter(PersonalNr) INITIALLY DEFERRED DEFERRABLE,
PRIMARY KEY (PersonalNr, gueltigAb),
check (Montag <= 24),
check (Dienstag <= 24),
check (Mittwoch <= 24),
check (Donnerstag <= 24),
check (Freitag <= 24),
check (Samstag <= 24),
check (Sonntag <= 24)
);
/
</code></pre>
<p>now the problem is that whenever I insert a row (not exclusive to this table) that contains a foreign key (the reference is valid so its not that) it inserts dutifully and as soon as I commit the whole mess it disappears again.</p>
<pre><code>INSERT INTO Dienstplan (Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag, Sonntag, PersonalNr) values ('1', '2','3','4','5','6','7','1');
</code></pre>
<p>the real kicker is that the manual insert in sqldeveloper (insert row - dialog & commit) works like a charm, which does not help me at all...</p>
<p>any help is appreciated
cheer hoax</p>
http://stackoverflow.com/questions/1824364/php-mysql-insert-on-godaddy0PHP / MySql Insert on GoDaddyTravis2009-12-01T06:30:10Z2009-12-08T21:36:34Z
<p>I'm using heredocs for a php/mysql insert statement on godaddy. When the function is called the page refreshes correctly, however, the data is not being inserted into the database and no errors are appearing. I've tested locally using MAMP and when the file is uploaded to the server it does not work. Has anyone had this issue before on godaddy? Below is my insert statement and form. </p>
<p>=================================</p>
<pre><code>if ( $ax == "new" ) {
$sql=<<<SQL
INSERT INTO college (member_id, name, date_entered, date_completed, degree, professor, method, friends, memory_1)
VALUES (
'{$_SESSION['SESS_MEMBER_ID']}',
'{$_GET['name']}',
'{$_GET['date_entered']}',
'{$_GET['date_completed']}',
'{$_GET['degree']}',
'{$_GET['professor']}',
'{$_GET['method']}',
'{$_GET['friends']}',
'{$_GET['memory_1']}'
)
</code></pre>
<p>SQL;</p>
<pre><code> echo $sql; exit;
if(mysql_query( $sql ) or die ( "Insert failed." . mysql_error()) );
header( "Location: education.php");
}
</code></pre>
<p>=====================</p>
<pre><code><form action="<?= $_SERVER["PHP_SELF"];?>" method="post">
<input type="hidden" name="ax" value="new">
Institution<br><input type="text" name="name" /><br>
Date Entered<br><input id="entered" type='text' name="date_entered" /><br>
Date Completed<br><input id="completed" type='text' name="date_completed" /><br>
Degree(s) Earned<br><input type="text" name="degree" /><br>
Favorite Professor <br><input type="text" name="professor" /><br>
Method of Study<br><select name="method" WIDTH="155" STYLE="width: 155px">
<option value="Classroom">Classroom</option>
<option value="Online">Online</option>
</select><br>
Friends<br><input type="text" name="friends" /><br>
<br><br>
Favorite Memory
<br>
<textarea cols="50" rows="4" name="memory_1"></textarea>
<br>
<input type="submit" name="submit" value="submit" class="ui-button ui-state-default ui-corner-all"/>
</form>
</code></pre>
<p>===================</p>
<p>Thanks for any help!</p>
http://stackoverflow.com/questions/365168/faster-insert-oracle-hash-cluster-table1Faster Insert Oracle Hash Cluster Tablechris2008-12-13T12:41:38Z2009-12-08T13:05:12Z
<p>Hi!</p>
<p>Since I kicked off the process of inserting 7M rows from one table into two others, I'm wondering now if there's a faster way to do this. The process is expected to finish in an hour, that's 24h of processing.</p>
<p>Here's how it goes:</p>
<p>The data from this table</p>
<pre><code>RAW (word VARCHAR2(4000), doc VARCHAR2(4000), count NUMBER);
</code></pre>
<p>should find a new home in two other cluster tables T1 and T2</p>
<pre><code>CREATE CLUSTER C1 (word VARCHAR2(4000)) SIZE 200 HASHKEYS 10000000;
CREATE CLUSTER C2 (doc VARCHAR2(4000)) SIZE 200 HASHKEYS 10000000;
T1 (word VARCHAR2(4000), doc VARCHAR2(4000), count NUMBER) CLUSTER C1(word);
T2 (doc VARCHAR2(4000), word VARCHAR2(4000), count NUMBER) CLUSTER C2(doc);
</code></pre>
<p>through Java inserts with manual commit like this</p>
<pre><code>stmtT1 = conn.prepareStatement("insert into T1 values(?,?,?)");
stmtT2 = conn.prepareStatement("insert into T2 values(?,?,?)");
rs = stmt.executeQuery("select word, doc, count from RAW");
conn.setAutoCommit(false);
while (rs.next()) {
word = rs.getString(1);
doc = rs.getString(2);
count = rs.getInt(3);
if (commitCount++==10000) { conn.commit(); commitCount=0; }
stmtT1.setString(1, word);
stmtT1.setString(2, doc);
stmtT1.setInt(3, count);
stmtT2.setString(1, doc);
stmtT2.setString(2, word);
stmtT2.setInt(3,count);
stmtT1.execute();
stmtT2.execute();
}
conn.commit();
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1863272/how-can-i-insert-my-foto-in-matlab-gui0How can I insert my foto in matlab gui? [closed]Vika2009-12-07T22:09:39Z2009-12-07T22:23:10Z
<p>Please hellp. How can I insert my foto in matlab gui?</p>
<p>Thanks for your answer.</p>
http://stackoverflow.com/questions/761543/db2command-executenonquery-insert-multiple-rows-problem1DB2Command ExecuteNonQuery Insert multiple rows problemDB2 Nubie2009-04-17T18:06:09Z2009-12-07T14:50:08Z
<p>I'm attempting to insert multiple rows into a DB2 database using C# code like this:</p>
<p>string query = "INSERT INTO TESTDB2.RG_Table (V,E,L,N,Q,B,S,P) values" +
"('lkjlkj', 'iouoiu', '2009-03-27 12:01:19', 'nnne', 'sdfdf', NULL, NULL, NULL)," +
"('lkjlk2', 'iuoiu2', '2009-03-27 12:01:19', 'nnne2', 'sddf2', NULL, NULL, NULL)";</p>
<p>DB2Command cmd = new DB2Command(query, this.transactionConnection, this.transaction);
cmd.ExecuteNonQuery();</p>
<p>If I stop building the query string after the first set of values is included it executes without an error. Attempting to load multiple values using this method results in the following error:
Upload error : ERROR [42601] [IBM][DB2] SQL0104N An unexpected token "," was found following "". Expected tokens may include: "". SQLSTATE
=42601</p>
<p>The SQL syntax matches that which I have read elsewhere, such as <a href="http://stackoverflow.com/questions/452859/inserting-multiple-rows-in-a-single-sql-query">http://stackoverflow.com/questions/452859/inserting-multiple-rows-in-a-single-sql-query</a> and IBM's documentation gives this example:
cmd = conn.CreateCommand();
cmd.Transaction = trans;
cmd.CommandText =
"INSERT INTO company_a VALUES(5275, 'Sanders', 20, 'Mgr', 15, 18357.50), " +
"(5265, 'Pernal', 20, 'Sales', NULL, 18171.25), " +
"(5791, 'O''Brien', 38, 'Sales', 9, 18006.00)";
cmd.ExecuteNonQuery();</p>
<p>Can anyone explain what could account for this?</p>
http://stackoverflow.com/questions/1857605/inserting-a-node-into-a-linked-list-c0Inserting a node into a linked list cElvin2009-12-07T03:11:39Z2009-12-07T04:26:10Z
<p>Okay This is the code for insering a node into a linked list. </p>
<p><code>vec_store</code> holds seq and size. Variable seq holds the vectors and a pointer. and <code>vec_mag</code> takes magnitude of vectors.</p>
<p>For some reason, the <code>(vec_mag(v)<=vec_mag(temp2->next->data))</code> doesn't work which is the last condition.</p>
<p>Any1 can solve the problem? By the way this is C code.</p>
<pre><code>vector last_vec(vec_store s){
node temp3;
temp3=s->seq;
while (temp3->next!=NULL)
{temp3 = temp3->next;
}
return temp3->data;
}
void insert_vec(vec_store s, vector v){
node temp1,temp2,temp4;
int i;
temp1 = malloc(sizeof (struct node_record));
if(s->seq==NULL){
s->seq=temp1;
temp1->next=NULL;
temp1->data=v;
s->size++;
printf("1\n");
}
else if(vec_mag(v)<=vec_mag(s->seq->data)){
s->size++;
temp2=s->seq;
temp1->data=v;
temp1->next=temp2;
s->seq=temp1;
printf("2\n");
}
else if(vec_mag(v)>=vec_mag(last_vec(s)))
{ s->size=s->size+1;
temp4=s->seq;
while (temp4->next!=NULL)
{temp4 = temp4->next;
}
temp1->next=NULL;
temp1->data=v;
temp4->next=temp1;
printf("3\n");
}
else{
temp2 = s->seq;
temp4 = s->seq;
for(i=0;i<s->size-1;i++){
if(vec_mag(v)<=vec_mag(temp2->next->data)){
temp1->data = v;
temp1->next = temp2->next;
temp2->next=temp1;
printf("4\n");
s->size++;
break;
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1853927/insert-group-by-count-results-into-a-table0Insert Group By count results into a tableMike2009-12-05T23:53:25Z2009-12-06T00:00:48Z
<p>How do you insert a group by count result into a table? I'm trying to insert a list of names with counts for each. </p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1853713/getting-a-userid-into-a-sqldatasource0Getting a UserId into a SQLDataSourceCronner2009-12-05T22:42:56Z2009-12-05T23:40:17Z
<p>I am still new to asp.net and I'm having a problem that I just can't figure out.
I'm using vb and the .net membership api.</p>
<p>My question is, how do I get the current user's userid into a DetailsView INSERT?</p>
<pre><code><InsertParameters>
<asp:Parameter Name="UserID"/>
</InsertParameters>
</code></pre>
http://stackoverflow.com/questions/1846074/oracle-database-table-insertion1Oracle database table insertionoracle2009-12-04T10:20:20Z2009-12-04T12:29:03Z
<p>I have two tables:</p>
<pre><code>create table Number( num number(5));
create table Entry(id number(3), name varchar(50));
</code></pre>
<p>How can I increment the num field of Number table in <a href="http://en.wikipedia.org/wiki/Oracle%5FDatabase" rel="nofollow">Oracle</a> whenever I insert something in the Entry table?</p>
http://stackoverflow.com/questions/1843344/inserting-rows-from-one-table-to-another-which-sql-is-more-efficient-outer-join0inserting rows from one table to another, which sql is more efficient (outer join vs sequential scan)prmatta2009-12-03T22:15:02Z2009-12-03T22:52:57Z
<p>I need to copy over rows from Table B to Table A. The requirement is to only insert rows that are not already in A.</p>
<p>My question is, which is of the the following two is more efficient:</p>
<p>A)</p>
<pre><code> INSERT INTO A (x, y, z)
SELECT x, y, z
FROM B b
WHERE b.id NOT IN (SELECT id FROM A);
</code></pre>
<p>B)</p>
<pre><code> INSERT INTO A (x, y, z)
SELECT b.x, b.y, b.z
FROM B b LEFT OUTER JOIN A a
ON b.id = a.id
WHERE a.id is NULL;
</code></pre>
<p>I am assuming the answer depends upon the size of the tables. But I wanted to know if there is something glaringly obvious about using one approach over the other.</p>
<p>To reduce the vagueness, lets say Table B will have less than 50K rows, and Table A will always be equal to or greater in size to Table B by a factor of 1-5.</p>
<p>If anyone has any other more efficient ways to do this, do tell.</p>
http://stackoverflow.com/questions/1837475/sql-insert-trigger-to-update-inserted-table-values0SQL Insert trigger to update INSERTED table valuesShimmy2009-12-03T03:36:40Z2009-12-03T03:51:26Z
<p>Hello.</p>
<p>I want to create an Insert trigger that updates values on all the inserted rows if they're null, the new values should be taken from a different table, according to another column in the inserted table.</p>
<p>I tried:</p>
<pre><code>UPDATE INSERTED
SET TheColumnToBeUpdated =
(
SELECT TheValueCol FROM AnotherTable.ValueCol
WHERE AnotherTable.ValudCol1 = INSERTED.ValueCol1
)
WHERE ValueCol IS NULL
</code></pre>
<p>But I get this error:</p>
<pre><code>Msg 286, Level 16, State 1, Procedure ThisTable_INSERT, Line 15
The logical tables INSERTED and DELETED cannot be updated.
</code></pre>
<p>How should I do that?</p>
http://stackoverflow.com/questions/1787634/automatically-match-columns-in-insert-into-select-from0Automatically match columns in INSERT INTO ... SELECT ... FROM ...Konstantin2009-11-24T03:43:10Z2009-12-02T22:18:38Z
<p>Hi!</p>
<p>SQL Server question.
When doing</p>
<pre><code>INSERT INTO T1 SELECT (C1, C2) FROM T2
</code></pre>
<p>I don't want to specify column names of <code>T1</code> because they are the same as in <code>T2</code></p>
<p>Is it possible to do so?</p>
<p>Currently I'm getting error</p>
<blockquote>
<p>Msg 213, Level 16, State 1, Line 1</p>
<p>Column name or number of supplied values does not match table definition.</p>
</blockquote>
http://stackoverflow.com/questions/1832732/iterating-over-linq-entity-column0iterating over linq entity columnnat2009-12-02T12:55:44Z2009-12-02T14:28:29Z
<p>hi ,</p>
<p>i need to insert a record with linq</p>
<p>i have a namevaluecollection with the data from a form post..
so started in the <code>name=value&name2=value2</code> etc.. type format</p>
<p>thing is i need to inset all these values into the table, but of course the table fields are typed, and i need to type up the data before inserting it</p>
<p>i could of course explicitly do</p>
<pre><code>linqtableobj.columnproperty = convert.toWhatever(value);
</code></pre>
<p>but i have many columns in the table, and the data coming back from the form, doesnt always contain all fields in the table</p>
<p>thought i could iterate over the linq objects columns, getting their datatype - to use to convert the appropriate value from the form data
fine all good, but then im still stuck with doing</p>
<pre><code>linqtableobj.columnproterty = converted value
</code></pre>
<p>...if there is one for every column in the table</p>
<pre><code>foreach(col in newlinqrowobj)
{
newlinqobj[col] = convert.changetype(namevaluecollection[col.name],col.datatype)
}
</code></pre>
<p>clearly i cant do that, but anything like that possible.. or</p>
<p>is it possible to loop around the columns for the new 'record' setting the values as i go.. and i guess grabbing the types at that point to do the conversion</p>
<p>stumped i am</p>
<p>thanks
nat</p>
http://stackoverflow.com/questions/1832210/inserting-with-linq1inserting with linqnat2009-12-02T11:02:28Z2009-12-02T12:57:42Z
<p>hi</p>
<p>i am trying to insert a load of data into a table with linq
the data arrives in a nameValueCollection with the key as the column name and the value as the value to be inserted</p>
<p>i need to convert all the values to their correct datatype but cant think of a good way to do this and then insert
i can iterate over the columns in the LINQ'ed table</p>
<pre><code> TransactionDataContext db = new TransactionDataContext();
var columns = db.Mapping.MappingSource
.GetModel(typeof(TransactionDataContext))
.GetMetaType(typeof(Transaction))
.DataMembers;
Type t;
string typeName, colName;
Transaction trans = new Transaction();
for(int i = 0;i<columns.Count();i++)
{
if(columns[i].Name.In(nvcRequest.Keys)){
colName = columnNames[i].Name;
t = columnNames[i].Type;
typeName = t.Name.ToString().ToLower();
switch(typeName){
case "int":
//convert value to int and add it into the new transaction
//but i cant do t[columns[i]] = newly typed value unfortunately.. - what can i do?
break;
case "datetime":
//convert to datetime and add into the appropriate field in the new transaction
break;
}
}
</code></pre>
<p>etc..
...
..</p>
<p>db.SubmitChanges();</p>
<p>the In function is :</p>
<pre><code> public static bool In(this object o, IEnumerable c){
foreach(object i in c){
if(i.Equals(o))
return true;
}
return false;
}
</code></pre>
<p>any ideas?
maybe i should just build up a string query myself?
i hope not :(</p>
<p>any help much appreciated</p>
<p>nat</p>
http://stackoverflow.com/questions/1831258/not-preparing-insert-query0not preparing insert query mayank sahai2009-12-02T07:46:22Z2009-12-02T07:58:45Z
<p>if (insert_statement == nil) {</p>
<pre><code>static char *query = "INSERT INTO iteminfo (itemname, friendid) VALUES(?,?) where itemid=?";
if (sqlite3_prepare_v2(database, query, -1, &insert_statement, NULL) != SQLITE_OK) {
NSAssert1(0, @"Error: failed to prepare statement with message '%s'.", sqlite3_errmsg(database));
}
</code></pre>
<p>i am new to Objective C programming....</p>
<p>i am trying this code to insert some values into database based on where condition, but there is a exception in preparing the insert statement the waring which i am getting is <strong>"Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error: failed to prepare statement with message 'near "WHERE": syntax error'.'</strong>"
Please help me out of this... issue.. </p>
http://stackoverflow.com/questions/1831007/how-to-get-the-value-of-idprimary-key-in-previous-operation-in-mysql0How to get the value of id(primary key) in previous operation in MySQLSteven2009-12-02T06:26:52Z2009-12-02T06:28:33Z
<p>I am using MySQL. I need to insert one row into a table first, then I need to get the id of the inserted row. The code looks somewhat like the following:</p>
<pre><code>insert into mytable (column2, column3, column4) values('value2','value3','value4')or die(mysql_error());
</code></pre>
<blockquote>
<p>Column1</p>
</blockquote>
<p>is the </p>
<blockquote>
<p>primary key</p>
</blockquote>
<p>and it is auto-increment. So how to get the value of </p>
<blockquote>
<p>column1</p>
</blockquote>
<p>in the previous operation?</p>
http://stackoverflow.com/questions/1830985/failed-to-prepare-insert-statement0failed to prepare insert statementmayank sahai2009-12-02T06:19:00Z2009-12-02T06:25:03Z
<p>sqlite3 *insert_statement=nil;</p>
<pre><code>if (insert_statement == nil) {
static char *query = "INSERT INTO iteminfo (itemname, friendid) VALUES(?,?) where itemid=?";
if (sqlite3_prepare_v2(database, query, -1, &insert_statement, NULL) != SQLITE_OK) {
NSAssert1(0, @"Error: failed to prepare statement with message '%s'.", sqlite3_errmsg(database));
}
</code></pre>
<p>hii... I am new to Objective C ...</p>
<p>i m trying this code to insert some values in database but there is a exception in preparing insert statement plz help me is there something i am missing ... Thanks in advance...</p>