Most voted "insert" questions
Insert refers to the act of storing data in a computerised system (usually a relational database) in a logical and structured or semi-structured way, by means of a specific command or operator (e.g.: Insert). Use this tag for questions relating to this operation, when well defined at the system level (i.e. do not use it to refer to the simple assignment of values in a data structure internal to the program).
Learn more…38 questions
Sort by count of
-
11
votes3
answers1559
viewsHow to condition the insertion of a record in SQL Server?
How can I condition the insertion of a record in a table in SQL Server using the T-SQL language considering the following rules: If the record to be inserted already exists in the table, only update…
-
5
votes3
answers2742
viewsIs there a better way to insert an option in select with jquery?
I was wondering if there’s a better way to insert a option in the select with jquery. Example: <select name="municipio_evento" id="municipio_evento"> <option value=""></option>…
-
3
votes3
answers727
views -
3
votes1
answer818
viewsCapturing the Boolean value of a PHP checkbox
I am making a product form, where the user needs to inform if the product is used or not, however I am having difficulties in capturing the value of this checkbox, if it is 1 or 0, in the mysql the…
-
2
votes1
answer644
viewsHow can I insert the results of a query into another table?
I am executing the following database query directly from the phpMyAdmin: SELECT shop.id AS cart_details_id, shop.id AS cart_id, e.name AS client_name, e.nif AS client_tin, e.addr AS client_address,…
-
2
votes1
answer1247
viewsC program for solving mathematical expressions using binary tree
I’m trying to build a tree that receives a completely parented mathematical expression [e.g.: ((a+b)+c)] but I think my insertion function is wrong! Will someone give me a light? typedef struct…
-
2
votes2
answers1206
viewsHow to reference foreign keys in registration forms?
I’m making a library website as college work, which has the following table in the database: My problem is that I don’t know how to handle php code and the form of fields that receive foreign keys.…
-
1
votes1
answer627
viewsInsert - Jump Lists / Skip Lists
I’m trying to implement the insertion of a node in a jump list, but I’m not making progress with the solution because I don’t know at what point I should add the Node. So far I’ve made this…
-
1
votes1
answer591
viewsAdd CSS by clicking a button that goes to another page
I need to add height in a div when I click a button, only there is one but this div is on another page and that’s where I’m not able to do it, I’ll show you how I did in the code below if anyone can…
-
1
votes1
answer106
viewsInsertion of PDF
I have a problem with the PDF insertion code, because the file name is not sent to the database. The code I’m talking about is this: Form: <form id="novoEventoForm"…
-
1
votes0
answers551
viewsHow to insert an image in the xsl spreadsheet with php? Since the database is saved only the image path in a folder on the server?
What is being passed to the spreadsheet is only the image path, but I need the image to be passed to the spreadsheet. The image in the server folder, only the image path is saved to the server.…
-
1
votes1
answer94
viewsInsert multiple Entity Framework items
I have the following method to add doclient data public void Alterar(CLIENTE Cliente) { using (Entity.DominioEntity db = new Entity.DominioEntity()) { //Alterar/Adicionar Telefone foreach (var item…
-
1
votes1
answer53
viewsI cannot enter user through/php database
Good morning, you guys. I’m facing a somewhat embarrassing problem. I can update the user via the panel I built, but I can’t add a new user to it. Follows the code. <? if…
-
1
votes0
answers175
viewsInsert Sequential Number into column C#
I have this table called Articlebarcode: In the column Code I need to insert a sequential number, that is, I have to read the maximum number that is there and insert the next one that is available !…
-
0
votes0
answers34
viewsInsert and update method does not work on Azure
Good afternoon Friends I’m starting in Asp net development and I made a web form application and put in Azure. It is a simple card registration application that accesses a mysql database created by…
-
0
votes1
answer75
viewsBD Access, Data field
In an Access BD with a "Data" field, when entering data in this field, is it possible to do something so that dates passed 3 days ago are rejected? If possible, please teach me! In fact, I only…
-
0
votes1
answer147
viewsInsert in list order in C
I have the following function: Nodo * insertOrder(Nodo *L,Nodo *nv){ //11,1,50,7,5 if(L==NULL){ return nv; } if(nv->id < L->id){ return (insertFirst(L, nv)); } int c=0; Nodo *aux2=L; Nodo…
-
0
votes0
answers29
viewsHow to insert a Datarow in the middle of a Datatable
I need to give an Insertat of a Datarow in the middle of a Datatable, but the way I’m always making the error "This line already belongs to another table" DataTable subpedido =…
-
0
votes1
answer45
viewsList database file and put a new row after a certain number
I’ve been trying for days to find a small solution: Example: I have this code: //LISTAR AS PLAYLISTS $dados_playlist = mysql_fetch_array(mysql_query("SELECT * FROM playlists where codigo =…
-
0
votes1
answer24
viewsPlace all items inside a folder in the firebase database
I’m trying to take all the items in the database and put them in a folder. When I went to the database I forgot to put the directory for the items to go to a folder…
-
0
votes1
answer1201
viewsInsert data into codeigniter database
Say guys all right, I’m having the following doubt: I need to view and save data in my database but as I will show below I am using Joins to display, for example the name of an author using his…
-
0
votes1
answer133
viewshow to convert my object into a string?
I did a function to insert the data into the database, but since I am using classes, I have to insert a class object into the database that will contain the data of the person in question, only that…
-
0
votes2
answers985
viewsInsert a data from a Combobox (PHP) into the Database
Hello, I’m putting together a system for the college project. I have a relationship between City-State. Well, the state CRUD is already working and storing in the Database, when I will register a…
-
0
votes1
answer964
viewsc# Take text and insert on top of image
I have a pictureBox, and I need the user to be able to make "markings" on the image. For example, the image is a human body, I need the user to click on the photo where the arm is, for example, a…
-
0
votes1
answer91
viewsHow do I insert elements of a first vector into another second vector, at a given user position? and still print step by step
Entradas - Tam do 1 vetor:5/ Elementos do 1 vetor: 1 2 3 4 5 / Elementos do 2 vetor: 6 7 8 9 10/ Pos a ser inserida: 1 Saida- 6 1 7 8 9 10 / 6 2 1 7 8 9 10 / 6 3 2 1 7 8 9 10 / 6 4 3 2 1 7 8 9 10/ 6…
-
0
votes1
answer219
viewsRepeated post in sending the data to the controller, how do I fix?
I’m trying to develop a php mvc system but I came across this problem in Create. The post is sending multiple data repeated do not know why this is happening. My view create looks like this <form…
-
0
votes0
answers46
viewsInsertion with PDO
I’m using the PHP with the objects PDO and Pdostatement, and my code does not portray any errors or Warning, I did the verification of the variables were passing with print_r and is normally, but…
-
0
votes1
answer8
viewsHow to add items to a dictionary without overwriting the previous item
Greetings!! With the code below, when instantiating an employee and then start the registration of hours worked informing the month and number of hours, inserting January: func01 =…
-
-1
votes1
answer654
viewsAdd data to a database via a link
I did a quick search but did not find, so I’m posting here. Well, here’s the thing, I want when the person click one link (in the case <a href=.......>inserir</a>) execute the following…
-
-1
votes1
answer85
viewsHow do I program an insert image button?
I want an "Insert image" button and when you click on it, right on top of it the inserted image appears (Taken from pc), you do not need to save the information, or anything, just make the image…
-
-1
votes1
answer44
viewsI’m having trouble inserting PDO data
I have checked this code several times and I did not find the error, please help me find and correct... echo"email = ".$email. "<br>" ; echo "ddd = ".$ddd ."<br>"; echo "telefone =…
-
-1
votes2
answers2049
viewsVBA Code Adaptation to fetch photos from a folder
Good afternoon. I have a macro, which searches a spreadsheet for the name of the photo (e.g., IMG0102.JPG), searches a predefined folder for the related photo and inserts it into the cell that bears…
-
-1
votes1
answer65
viewsProblem when inserting into mysql table
Good afternoon, I have this code: <?php $servername = "xxxxxxxxxxx"; $username = "xxxxxxx"; $password = "xxxxxxxx"; $dbname = "xxxxxxx"; $conn = new mysqli($servername, $username, $password,…
-
-1
votes2
answers66
viewsPut clock in a <TD>
I’m picking to put a clock inside a tag I have this code for the function of the clock I picked up on the Internet function startTime() { var today = new Date(); var h = today.getHours(); var m =…
-
-1
votes1
answer43
viewsINSERTION COMMAND TOGETHER WITH THE PHP TEMPLATE
Good evening, I wonder if there is a way to put the sql commands for insertion in the same form as the inputs. Obrihado! INSERTION FORM <!DOCTYPE html> <html lang="en" > <head>…
-
-2
votes1
answer79
viewsInsert n points of a vector randomly into any matrix in java
I’m beginner in java, I was wondering if there is any function that would facilitate my life so that: having a vector of n positions filled with (pre-defined) numbers, distribute these numbers at…
-
-2
votes1
answer484
viewsHow to enter data (registration) in Sqlite?
Hello, my Sqlite connection is as follows: Connection connection = null; try { // create a database connection connection = DriverManager.getConnection("jdbc:sqlite:database.db"); Statement…
-
-4
votes1
answer70
viewsSend 10 values using the POST method, the values should be entered in a vector
The goal is the following: send 10 values using the POST method through the form, and insert them into a vector, which will later be printed. Anyone who can help me thank you.