powered by simpleCommunicator - 2.0.53     © 2025 Programmizd 02
Форумы / WinForms, .Net Framework [игнор отключен] [закрыт для гостей] / Insert id с типом uniqueidentifie
3 сообщений из 3, страница 1 из 1
Insert id с типом uniqueidentifie
    #39145869
mishanya3624
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
Приветствую есть стандартная форма по insert update delete? Как при Insert автоматически добавлять id с типом uniqueidentifier?
Код: c#
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication5
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
           
            this.insertExcelTableAdapter.Fill(this.dataSet1.insertExcel);

        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.insertExcelTableAdapter.Update(this.dataSet1);
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }
        private void button3_Click(object sender, EventArgs e)
        {
            Guid -------??
            string nme = textBox1.Text;
            string fio = textBox2.Text;
            insertExcelTableAdapter.Insert(NewID()----???, nme, fio);
            this.insertExcelTableAdapter.Fill(this.dataSet1.insertExcel);

        }
        private void button4_Click(object sender, EventArgs e)
        {
            dataGridView1.Rows.RemoveAt(dataGridView1.CurrentCell.RowIndex);
        }

 

     
    }
}



пробовал менять InsertCommand на:
Код: c#
1.
  this._adapter.InsertCommand.CommandText = "INSERT INTO [work].[dbo].[insertExcel] ([id], [Name], [FIO]) VALUES (NewID(), ?, ?)";


все равно не добавляет...
...
Рейтинг: 0 / 0
Insert id с типом uniqueidentifie
    #39145928
mishanya3624
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
пишу:
Guid idd = new Guid();
запись вставляется, но id получается вида 0000-0000-000-0000
...
Рейтинг: 0 / 0
Insert id с типом uniqueidentifie
    #39145934
mishanya3624
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
разобрался - Guid.NewGuid()
...
Рейтинг: 0 / 0
3 сообщений из 3, страница 1 из 1
Форумы / WinForms, .Net Framework [игнор отключен] [закрыт для гостей] / Insert id с типом uniqueidentifie
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]