473,659 Members | 3,631 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how do you create foreign key constraints in mySQL? Or Close to it?

create table if not exists nnet_produkt_va regruppe (
nnet_produkt_va regruppe_id int not null auto_increment,
primary key(nnet_produk t_varegruppe_id ),
nnet_produkt_va regruppe_navn varchar(255) not null
);
create table if not exists nnet_produkt_fa rge (
nnet_produkt_fa rge_id int not null auto_increment,
primary key(nnet_produk t_farge_id),
nnet_produkt_fa rge_code varchar(5) not null,
nnet_produkt_fa rge_navn varchar(255) not null
);

alter table nnet_produkt_fa rge add index
ix_nnet_produkt _farge_code(nne t_produkt_farge .nnet_produkt_f arge_code);

create table if not exists nnet_produkt_st orrelse (
nnet_produkt_st orrelse_id int not null auto_increment,
primary key(nnet_produk t_storrelse_id) ,
nnet_produkt_st orrelse_navn varchar(255) not null
);

create table if not exists nnet_produkt (
nnet_produkt_id int not null auto_increment,
primary key(nnet_produk t_id),
nnet_produkt_va renr varchar(50) not null,
nnet_produkt_na vn varchar(255) not null,
nnet_produkt_fa rge_code varchar(5),
nnet_produkt_st orrelse_id int default 0,
nnet_produkt_kv alitet_id int default 0,
nnet_produkt_kr age varchar(255),
nnet_produkt_in npris decimal(6,2) not null,
nnet_produkt_ut pris decimal(6,2) not null,
nnet_produkt_ne tto decimal(6,2) not null,
nnet_produkt_fo rhandler_rabatt decimal(6,2) not null,
nnet_produkt_bo nus decimal(6,2) default 0.00,
nnet_produkt_to ppbonus decimal(6,2) default 0.00,
nnet_produkt_bt o decimal(6,2) default 0.00,
nnet_produkt_qu antity int default 0
);

alter table nnet_produkt add index
ix_nnet_produkt _varenr(nnet_pr odukt_varenr);
alter table nnet_produkt add index ix_nnet_produkt _navn(nnet_prod ukt_navn);
alter table nnet_produkt add index
ix_nnet_produkt _fargecode(nnet _produkt.nnet_p rodukt_farge_co de);
alter table nnet_produkt add index
ix_nnet_produkt _storrelse_id(n net_produkt_sto rrelse_id);
alter table nnet_produkt add index
ix_nnet_produkt _innpris(nnet_p rodukt_innpris) ;
alter table nnet_produkt add index
ix_nnet_produkt _utpris(nnet_pr odukt_utpris);
alter table nnet_produkt add index
ix_nnet_produkt _netto(nnet_pro dukt_netto);
alter table nnet_produkt add index
ix_nnet_produkt _forhandler_rab att(nnet_produk t_forhandler_ra batt);
alter table nnet_produkt add index
ix_nnet_produkt _bonus(nnet_pro dukt_bonus);
alter table nnet_produkt add index
ix_nnet_produkt _toppbonus(nnet _produkt_toppbo nus);
alter table nnet_produkt add index ix_nnet_produkt _bto(nnet_produ kt_bto);
alter table nnet_produkt add index
ix_nnet_produkt _quantity(nnet_ produkt_quantit y);
I cannot create the indices I need considering the schema structure I am
listing. How on earth do I create something like a foreign key constraints
if it doesn't let you?

Phil
Jul 16 '05 #1
4 4050
Hm...

First thought...If i understood right...

Try using INNODB type of table in MySQL.....

hope this helps.....
"Phil Powell" <so*****@erols. com> wrote in message
news:pdy7b.1469 66$xf.64452@lak eread04...
create table if not exists nnet_produkt_va regruppe (
nnet_produkt_va regruppe_id int not null auto_increment,
primary key(nnet_produk t_varegruppe_id ),
nnet_produkt_va regruppe_navn varchar(255) not null
);
create table if not exists nnet_produkt_fa rge (
nnet_produkt_fa rge_id int not null auto_increment,
primary key(nnet_produk t_farge_id),
nnet_produkt_fa rge_code varchar(5) not null,
nnet_produkt_fa rge_navn varchar(255) not null
);

alter table nnet_produkt_fa rge add index
ix_nnet_produkt _farge_code(nne t_produkt_farge .nnet_produkt_f arge_code);

create table if not exists nnet_produkt_st orrelse (
nnet_produkt_st orrelse_id int not null auto_increment,
primary key(nnet_produk t_storrelse_id) ,
nnet_produkt_st orrelse_navn varchar(255) not null
);

create table if not exists nnet_produkt (
nnet_produkt_id int not null auto_increment,
primary key(nnet_produk t_id),
nnet_produkt_va renr varchar(50) not null,
nnet_produkt_na vn varchar(255) not null,
nnet_produkt_fa rge_code varchar(5),
nnet_produkt_st orrelse_id int default 0,
nnet_produkt_kv alitet_id int default 0,
nnet_produkt_kr age varchar(255),
nnet_produkt_in npris decimal(6,2) not null,
nnet_produkt_ut pris decimal(6,2) not null,
nnet_produkt_ne tto decimal(6,2) not null,
nnet_produkt_fo rhandler_rabatt decimal(6,2) not null,
nnet_produkt_bo nus decimal(6,2) default 0.00,
nnet_produkt_to ppbonus decimal(6,2) default 0.00,
nnet_produkt_bt o decimal(6,2) default 0.00,
nnet_produkt_qu antity int default 0
);

alter table nnet_produkt add index
ix_nnet_produkt _varenr(nnet_pr odukt_varenr);
alter table nnet_produkt add index ix_nnet_produkt _navn(nnet_prod ukt_navn); alter table nnet_produkt add index
ix_nnet_produkt _fargecode(nnet _produkt.nnet_p rodukt_farge_co de);
alter table nnet_produkt add index
ix_nnet_produkt _storrelse_id(n net_produkt_sto rrelse_id);
alter table nnet_produkt add index
ix_nnet_produkt _innpris(nnet_p rodukt_innpris) ;
alter table nnet_produkt add index
ix_nnet_produkt _utpris(nnet_pr odukt_utpris);
alter table nnet_produkt add index
ix_nnet_produkt _netto(nnet_pro dukt_netto);
alter table nnet_produkt add index
ix_nnet_produkt _forhandler_rab att(nnet_produk t_forhandler_ra batt);
alter table nnet_produkt add index
ix_nnet_produkt _bonus(nnet_pro dukt_bonus);
alter table nnet_produkt add index
ix_nnet_produkt _toppbonus(nnet _produkt_toppbo nus);
alter table nnet_produkt add index ix_nnet_produkt _bto(nnet_produ kt_bto);
alter table nnet_produkt add index
ix_nnet_produkt _quantity(nnet_ produkt_quantit y);
I cannot create the indices I need considering the schema structure I am
listing. How on earth do I create something like a foreign key constraints if it doesn't let you?

Phil


Jul 16 '05 #2
wish I knew the answer to this one...
I believe foreign key constriants work with innodb tables but myisam tables
are the default.
I'm working on a project in which I really need to enforce referential
integrity but I'm not sure how to assault the learning curve on the innodb
setup, if innodb support is even possible at all through my web/database
hosting service.
r


"Phil Powell" <so*****@erols. com> wrote in message
news:pdy7b.1469 66$xf.64452@lak eread04...
create table if not exists nnet_produkt_va regruppe (
nnet_produkt_va regruppe_id int not null auto_increment,
primary key(nnet_produk t_varegruppe_id ),
nnet_produkt_va regruppe_navn varchar(255) not null
);
create table if not exists nnet_produkt_fa rge (
nnet_produkt_fa rge_id int not null auto_increment,
primary key(nnet_produk t_farge_id),
nnet_produkt_fa rge_code varchar(5) not null,
nnet_produkt_fa rge_navn varchar(255) not null
);

alter table nnet_produkt_fa rge add index
ix_nnet_produkt _farge_code(nne t_produkt_farge .nnet_produkt_f arge_code);

create table if not exists nnet_produkt_st orrelse (
nnet_produkt_st orrelse_id int not null auto_increment,
primary key(nnet_produk t_storrelse_id) ,
nnet_produkt_st orrelse_navn varchar(255) not null
);

create table if not exists nnet_produkt (
nnet_produkt_id int not null auto_increment,
primary key(nnet_produk t_id),
nnet_produkt_va renr varchar(50) not null,
nnet_produkt_na vn varchar(255) not null,
nnet_produkt_fa rge_code varchar(5),
nnet_produkt_st orrelse_id int default 0,
nnet_produkt_kv alitet_id int default 0,
nnet_produkt_kr age varchar(255),
nnet_produkt_in npris decimal(6,2) not null,
nnet_produkt_ut pris decimal(6,2) not null,
nnet_produkt_ne tto decimal(6,2) not null,
nnet_produkt_fo rhandler_rabatt decimal(6,2) not null,
nnet_produkt_bo nus decimal(6,2) default 0.00,
nnet_produkt_to ppbonus decimal(6,2) default 0.00,
nnet_produkt_bt o decimal(6,2) default 0.00,
nnet_produkt_qu antity int default 0
);

alter table nnet_produkt add index
ix_nnet_produkt _varenr(nnet_pr odukt_varenr);
alter table nnet_produkt add index ix_nnet_produkt _navn(nnet_prod ukt_navn); alter table nnet_produkt add index
ix_nnet_produkt _fargecode(nnet _produkt.nnet_p rodukt_farge_co de);
alter table nnet_produkt add index
ix_nnet_produkt _storrelse_id(n net_produkt_sto rrelse_id);
alter table nnet_produkt add index
ix_nnet_produkt _innpris(nnet_p rodukt_innpris) ;
alter table nnet_produkt add index
ix_nnet_produkt _utpris(nnet_pr odukt_utpris);
alter table nnet_produkt add index
ix_nnet_produkt _netto(nnet_pro dukt_netto);
alter table nnet_produkt add index
ix_nnet_produkt _forhandler_rab att(nnet_produk t_forhandler_ra batt);
alter table nnet_produkt add index
ix_nnet_produkt _bonus(nnet_pro dukt_bonus);
alter table nnet_produkt add index
ix_nnet_produkt _toppbonus(nnet _produkt_toppbo nus);
alter table nnet_produkt add index ix_nnet_produkt _bto(nnet_produ kt_bto);
alter table nnet_produkt add index
ix_nnet_produkt _quantity(nnet_ produkt_quantit y);
I cannot create the indices I need considering the schema structure I am
listing. How on earth do I create something like a foreign key constraints if it doesn't let you?

Phil

Jul 16 '05 #3
r
The recent 4.xx release of mysql supports fkey and ref integrity from within
innodb tables which are natively supported (no special installatin stuff
necessary). Here's an example of a schema I'm working on for swim meet
volunteers. Note that once workers exist for a particular timeslot, the
slot cannot be deleted (leaving orphans) nor can workers be assigned to
nonexistant slots.
referential integrity.

CREATE TABLE IF NOT EXISTS Slots_HeatSheet Workers(
HS_ID SMALLINT UNSIGNED NOT NULL,
HS_Date DATE NOT NULL,
HS_TimeStart VARCHAR(8) NOT NULL,
HS_TimeEnd VARCHAR(8) NOT NULL,
HS_Workers_Need ed TINYINT UNSIGNED,
PRIMARY KEY(HS_ID)
) TYPE=INNODB;

CREATE TABLE IF NOT EXISTS Workers_HeatShe et(
HS_ID SMALLINT UNSIGNED,
INDEX WHS_H (HS_ID),
FOREIGN KEY (HS_ID) REFERENCES Slots_HeatSheet Workers(HS_ID)
ON DELETE RESTRICT,
WHS_ID SMALLINT UNSIGNED AUTO_INCREMENT,
NameFirst VARCHAR(255) NOT NULL,
NameLast VARCHAR(255) NOT NULL,
EMail VARCHAR(255) NOT NULL,
PRIMARY KEY(WHS_ID)
) TYPE=INNODB;






"Ygor" <so*****@anywhe re.com> wrote in message
news:Tu******** ************@co mcast.com...
wish I knew the answer to this one...
I believe foreign key constriants work with innodb tables but myisam tables are the default.
I'm working on a project in which I really need to enforce referential
integrity but I'm not sure how to assault the learning curve on the innodb
setup, if innodb support is even possible at all through my web/database
hosting service.
r


"Phil Powell" <so*****@erols. com> wrote in message
news:pdy7b.1469 66$xf.64452@lak eread04...
create table if not exists nnet_produkt_va regruppe (
nnet_produkt_va regruppe_id int not null auto_increment,
primary key(nnet_produk t_varegruppe_id ),
nnet_produkt_va regruppe_navn varchar(255) not null
);
create table if not exists nnet_produkt_fa rge (
nnet_produkt_fa rge_id int not null auto_increment,
primary key(nnet_produk t_farge_id),
nnet_produkt_fa rge_code varchar(5) not null,
nnet_produkt_fa rge_navn varchar(255) not null
);

alter table nnet_produkt_fa rge add index
ix_nnet_produkt _farge_code(nne t_produkt_farge .nnet_produkt_f arge_code);

create table if not exists nnet_produkt_st orrelse (
nnet_produkt_st orrelse_id int not null auto_increment,
primary key(nnet_produk t_storrelse_id) ,
nnet_produkt_st orrelse_navn varchar(255) not null
);

create table if not exists nnet_produkt (
nnet_produkt_id int not null auto_increment,
primary key(nnet_produk t_id),
nnet_produkt_va renr varchar(50) not null,
nnet_produkt_na vn varchar(255) not null,
nnet_produkt_fa rge_code varchar(5),
nnet_produkt_st orrelse_id int default 0,
nnet_produkt_kv alitet_id int default 0,
nnet_produkt_kr age varchar(255),
nnet_produkt_in npris decimal(6,2) not null,
nnet_produkt_ut pris decimal(6,2) not null,
nnet_produkt_ne tto decimal(6,2) not null,
nnet_produkt_fo rhandler_rabatt decimal(6,2) not null,
nnet_produkt_bo nus decimal(6,2) default 0.00,
nnet_produkt_to ppbonus decimal(6,2) default 0.00,
nnet_produkt_bt o decimal(6,2) default 0.00,
nnet_produkt_qu antity int default 0
);

alter table nnet_produkt add index
ix_nnet_produkt _varenr(nnet_pr odukt_varenr);
alter table nnet_produkt add index

ix_nnet_produkt _navn(nnet_prod ukt_navn);
alter table nnet_produkt add index
ix_nnet_produkt _fargecode(nnet _produkt.nnet_p rodukt_farge_co de);
alter table nnet_produkt add index
ix_nnet_produkt _storrelse_id(n net_produkt_sto rrelse_id);
alter table nnet_produkt add index
ix_nnet_produkt _innpris(nnet_p rodukt_innpris) ;
alter table nnet_produkt add index
ix_nnet_produkt _utpris(nnet_pr odukt_utpris);
alter table nnet_produkt add index
ix_nnet_produkt _netto(nnet_pro dukt_netto);
alter table nnet_produkt add index
ix_nnet_produkt _forhandler_rab att(nnet_produk t_forhandler_ra batt);
alter table nnet_produkt add index
ix_nnet_produkt _bonus(nnet_pro dukt_bonus);
alter table nnet_produkt add index
ix_nnet_produkt _toppbonus(nnet _produkt_toppbo nus);
alter table nnet_produkt add index ix_nnet_produkt _bto(nnet_produ kt_bto); alter table nnet_produkt add index
ix_nnet_produkt _quantity(nnet_ produkt_quantit y);
I cannot create the indices I need considering the schema structure I am
listing. How on earth do I create something like a foreign key

constraints
if it doesn't let you?

Phil


Jul 17 '05 #4
Change table type from MyISAM to InnoDB to have more feature, like foreign
key

Savut

"r" <no***@nowhere. com> wrote in message
news:w8******** ************@co mcast.com...
The recent 4.xx release of mysql supports fkey and ref integrity from
within
innodb tables which are natively supported (no special installatin stuff
necessary). Here's an example of a schema I'm working on for swim meet
volunteers. Note that once workers exist for a particular timeslot, the
slot cannot be deleted (leaving orphans) nor can workers be assigned to
nonexistant slots.
referential integrity.

CREATE TABLE IF NOT EXISTS Slots_HeatSheet Workers(
HS_ID SMALLINT UNSIGNED NOT NULL,
HS_Date DATE NOT NULL,
HS_TimeStart VARCHAR(8) NOT NULL,
HS_TimeEnd VARCHAR(8) NOT NULL,
HS_Workers_Need ed TINYINT UNSIGNED,
PRIMARY KEY(HS_ID)
) TYPE=INNODB;

CREATE TABLE IF NOT EXISTS Workers_HeatShe et(
HS_ID SMALLINT UNSIGNED,
INDEX WHS_H (HS_ID),
FOREIGN KEY (HS_ID) REFERENCES Slots_HeatSheet Workers(HS_ID)
ON DELETE RESTRICT,
WHS_ID SMALLINT UNSIGNED AUTO_INCREMENT,
NameFirst VARCHAR(255) NOT NULL,
NameLast VARCHAR(255) NOT NULL,
EMail VARCHAR(255) NOT NULL,
PRIMARY KEY(WHS_ID)
) TYPE=INNODB;






"Ygor" <so*****@anywhe re.com> wrote in message
news:Tu******** ************@co mcast.com...
wish I knew the answer to this one...
I believe foreign key constriants work with innodb tables but myisam

tables
are the default.
I'm working on a project in which I really need to enforce referential
integrity but I'm not sure how to assault the learning curve on the
innodb
setup, if innodb support is even possible at all through my web/database
hosting service.
r


"Phil Powell" <so*****@erols. com> wrote in message
news:pdy7b.1469 66$xf.64452@lak eread04...
> create table if not exists nnet_produkt_va regruppe (
> nnet_produkt_va regruppe_id int not null auto_increment,
> primary key(nnet_produk t_varegruppe_id ),
> nnet_produkt_va regruppe_navn varchar(255) not null
> );
>
>
> create table if not exists nnet_produkt_fa rge (
> nnet_produkt_fa rge_id int not null auto_increment,
> primary key(nnet_produk t_farge_id),
> nnet_produkt_fa rge_code varchar(5) not null,
> nnet_produkt_fa rge_navn varchar(255) not null
> );
>
> alter table nnet_produkt_fa rge add index
> ix_nnet_produkt _farge_code(nne t_produkt_farge .nnet_produkt_f arge_code);
>
> create table if not exists nnet_produkt_st orrelse (
> nnet_produkt_st orrelse_id int not null auto_increment,
> primary key(nnet_produk t_storrelse_id) ,
> nnet_produkt_st orrelse_navn varchar(255) not null
> );
>
> create table if not exists nnet_produkt (
> nnet_produkt_id int not null auto_increment,
> primary key(nnet_produk t_id),
> nnet_produkt_va renr varchar(50) not null,
> nnet_produkt_na vn varchar(255) not null,
> nnet_produkt_fa rge_code varchar(5),
> nnet_produkt_st orrelse_id int default 0,
> nnet_produkt_kv alitet_id int default 0,
> nnet_produkt_kr age varchar(255),
> nnet_produkt_in npris decimal(6,2) not null,
> nnet_produkt_ut pris decimal(6,2) not null,
> nnet_produkt_ne tto decimal(6,2) not null,
> nnet_produkt_fo rhandler_rabatt decimal(6,2) not null,
> nnet_produkt_bo nus decimal(6,2) default 0.00,
> nnet_produkt_to ppbonus decimal(6,2) default 0.00,
> nnet_produkt_bt o decimal(6,2) default 0.00,
> nnet_produkt_qu antity int default 0
> );
>
> alter table nnet_produkt add index
> ix_nnet_produkt _varenr(nnet_pr odukt_varenr);
> alter table nnet_produkt add index

ix_nnet_produkt _navn(nnet_prod ukt_navn);
> alter table nnet_produkt add index
> ix_nnet_produkt _fargecode(nnet _produkt.nnet_p rodukt_farge_co de);
> alter table nnet_produkt add index
> ix_nnet_produkt _storrelse_id(n net_produkt_sto rrelse_id);
> alter table nnet_produkt add index
> ix_nnet_produkt _innpris(nnet_p rodukt_innpris) ;
> alter table nnet_produkt add index
> ix_nnet_produkt _utpris(nnet_pr odukt_utpris);
> alter table nnet_produkt add index
> ix_nnet_produkt _netto(nnet_pro dukt_netto);
> alter table nnet_produkt add index
> ix_nnet_produkt _forhandler_rab att(nnet_produk t_forhandler_ra batt);
> alter table nnet_produkt add index
> ix_nnet_produkt _bonus(nnet_pro dukt_bonus);
> alter table nnet_produkt add index
> ix_nnet_produkt _toppbonus(nnet _produkt_toppbo nus);
> alter table nnet_produkt add index ix_nnet_produkt _bto(nnet_produ kt_bto); > alter table nnet_produkt add index
> ix_nnet_produkt _quantity(nnet_ produkt_quantit y);
>
>
> I cannot create the indices I need considering the schema structure I
> am
> listing. How on earth do I create something like a foreign key

constraints
> if it doesn't let you?
>
> Phil
>
>




Jul 17 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
55980
by: js | last post by:
I am trying to create a primary key constraint on a view in the following statement. However, I got an error ORA-00907: missing right parenthesis. If the CONSTRAINT clause is removed, then the view is created fine. Does anyone know how to creat Primary Key Constraint for a View? Thanks. CREATE OR REPLACE VIEW RPT_VW_WMN ( CARD, EC_D_CODE, EC_M_CODE, START_DATE, PR_NAME, PR_ID, ELIG, ANNUALY, MONTHLY, PENDING, /* ORA-00907: missing...
0
1162
by: Morten Gulbrandsen | last post by:
USE company; DROP TABLE IF EXISTS EMPLOYEE; CREATE TABLE EMPLOYEE ( # PK SSN CHAR(9) NOT NULL, # FK SUPERSSN CHAR(9), DNO INT NOT NULL DEFAULT 1, CONSTRAINT EMPPK
0
5290
by: John Towell | last post by:
------=_NextPart_000_0008_01C360DD.C2475700 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit We are trying to load a set of data using Hibernate (O/R mapping tool). Hibernate creates foreign key constraints when it is creating our DB (mysql 4.0.14). The process for loading data requires us to break these constraints at certain points, however they will all be satisfied at the end of the transaction.
0
514
by: Morten Gulbrandsen | last post by:
Hello, starting from some software database spesification, defined in some Enhanced entity relationship diagram, resulting in all kinds of relationships, 1:1 1:Many Many:1
10
1659
by: Phil Powell | last post by:
create table if not exists nnet_produkt_varegruppe ( nnet_produkt_varegruppe_id int not null auto_increment, primary key(nnet_produkt_varegruppe_id), nnet_produkt_varegruppe_navn varchar(255) not null ); create table if not exists nnet_produkt_farge ( nnet_produkt_farge_id int not null auto_increment, primary key(nnet_produkt_farge_id),
2
1838
by: Jeff Silverman | last post by:
I am working on my first database and I think I want to build a table with a foreign key in it. The O'Reilly book on MySQL says that MySQL does not support foreign keys, but it still talks about them in the section on database design. So, if if I want to use a foreign key, how do I do it? Many thanks,
5
4572
by: kutty | last post by:
Hi All, I am loading data to a child table from a text file. the text files also contains data not referenced by parent key. while loading the data if one row fails to satisfies the constraint everything is getting rollback.. plz suggest me something.. which will help me to discard the unsatisfied rows and continue with the rest..
27
3774
by: max | last post by:
Hello, I am a newbye, and I'm trying to write a simple application. I have five tables with three columns; all tables are identical; I need to change some data in the first table and let VB updates the same data in all other four tables in the right places. I know it would be possible by using the ForeignKeyConstraint object. I have created the tables using the DataSet Visual Tool and I know it doesn't create any ForeignKeyConstraint obj....
2
43941
by: jarea | last post by:
I have read quite a bit about this error but I have yet to find the solution to my problem. I am trying to execute the following mysql statement: alter table line_items add constraint fk_line_item_products foreign key (product_id) references products(id) I have also tried the following statement with the same result:
0
8337
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8748
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8531
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8628
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7359
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5650
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2754
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1978
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1739
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.