473,408 Members | 2,888 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Creating an Access DB & Tables

Does anyone know of a good example for creating a access database and then
tables within that database.

All the examples I have found so far use a SQL database.

Thanks,

Ken

Nov 21 '05 #1
18 2428
Ken

Here's a sample I cut and pasted from a prior program I worked on
Hope it helps. Note that when appending the items you can specify if the
column data is nullable, a size, a datatype etc etc.

Mike

Private Sub CreateDatabase(ByVal filename As String)

Dim CnnNew As ADODB.Connection

Dim CatNew As ADOX.Catalog

Try

' Open a Connection and create the Catalog (Database)

'

CnnNew = New ADODB.Connection

CatNew = New ADOX.Catalog

CatNew.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _

"Data Source=" & filename & ";" & _

"Jet OLEDB:Engine Type=5")
'Open the connection

CnnNew.Open("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & filename)

'Open the Catalog

CatNew.ActiveConnection = CnnNew

'

'Now build all the Database tables as desired. Add or delete column

'attributes or properties as desired.

'

'Build and add the first Table

'

Dim objDesignTable As New ADOX.Table

With objDesignTable

..Name = "xxxxxxxx"

..ParentCatalog = CatNew

With .Columns

..Append("Units", ADOX.DataTypeEnum.adVarWChar)

..Append("Code", ADOX.DataTypeEnum.adVarWChar)

Append("Change X", adDouble)

..Append("Density", adDouble)

..Append("NA1", adDouble)

..Item("NA1").Attributes = ColumnAttributesEnum.adColNullable

..Append("Occasional Load Factor", adDouble)

..Append("Load Case W1", adBoolean)

..Append("Load Case T1", adBoolean)

..Append("Load X", adDouble)

..Item("Load X").Attributes = ColumnAttributesEnum.adColNullable

..Append("NA2", adDouble)

..Item("NA2").Attributes = ColumnAttributesEnum.adColNullable

..Append("FLAG1", adBoolean)

..Append("FLAG2", adBoolean)

..Append("FLAG3", adBoolean)

End With

'Create and Append a new auto incrementing column to be used

'as the primary key for the table

..Columns.Append("KeyID", adInteger)

..Columns("KeyID").Properties("AutoIncrement").Val ue = True

End With

'Create and Append a new key. Note that we are merely passing

'the "KeyID" column as the source of the primary key. This

'new Key will be Appended to the Keys Collection.

Dim objDesignKey As New ADOX.Key

objDesignKey.Name = "PrimaryKey"

objDesignKey.Type = KeyTypeEnum.adKeyPrimary

objDesignKey.Columns.Append("KeyID")

objDesignTable.Keys.Append(objDesignKey)

'Append the newly created table to the Tables Collection

CatNew.Tables.Append(objDesignTable)

' clean up objects

objDesignKey = Nothing

objDesignTable = Nothing

'. Add or delete column

'attributes or properties as desired.

catch

'error code here

end try

end sub

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
Does anyone know of a good example for creating a access database and then
tables within that database.

All the examples I have found so far use a SQL database.

Thanks,

Ken

Nov 21 '05 #2
Thanks Mike.

What references are required?

Ken
"Michael" wrote:
Ken

Here's a sample I cut and pasted from a prior program I worked on
Hope it helps. Note that when appending the items you can specify if the
column data is nullable, a size, a datatype etc etc.

Mike

Private Sub CreateDatabase(ByVal filename As String)

Dim CnnNew As ADODB.Connection

Dim CatNew As ADOX.Catalog

Try

' Open a Connection and create the Catalog (Database)

'

CnnNew = New ADODB.Connection

CatNew = New ADOX.Catalog

CatNew.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _

"Data Source=" & filename & ";" & _

"Jet OLEDB:Engine Type=5")
'Open the connection

CnnNew.Open("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & filename)

'Open the Catalog

CatNew.ActiveConnection = CnnNew

'

'Now build all the Database tables as desired. Add or delete column

'attributes or properties as desired.

'

'Build and add the first Table

'

Dim objDesignTable As New ADOX.Table

With objDesignTable

..Name = "xxxxxxxx"

..ParentCatalog = CatNew

With .Columns

..Append("Units", ADOX.DataTypeEnum.adVarWChar)

..Append("Code", ADOX.DataTypeEnum.adVarWChar)

Append("Change X", adDouble)

..Append("Density", adDouble)

..Append("NA1", adDouble)

..Item("NA1").Attributes = ColumnAttributesEnum.adColNullable

..Append("Occasional Load Factor", adDouble)

..Append("Load Case W1", adBoolean)

..Append("Load Case T1", adBoolean)

..Append("Load X", adDouble)

..Item("Load X").Attributes = ColumnAttributesEnum.adColNullable

..Append("NA2", adDouble)

..Item("NA2").Attributes = ColumnAttributesEnum.adColNullable

..Append("FLAG1", adBoolean)

..Append("FLAG2", adBoolean)

..Append("FLAG3", adBoolean)

End With

'Create and Append a new auto incrementing column to be used

'as the primary key for the table

..Columns.Append("KeyID", adInteger)

..Columns("KeyID").Properties("AutoIncrement").Val ue = True

End With

'Create and Append a new key. Note that we are merely passing

'the "KeyID" column as the source of the primary key. This

'new Key will be Appended to the Keys Collection.

Dim objDesignKey As New ADOX.Key

objDesignKey.Name = "PrimaryKey"

objDesignKey.Type = KeyTypeEnum.adKeyPrimary

objDesignKey.Columns.Append("KeyID")

objDesignTable.Keys.Append(objDesignKey)

'Append the newly created table to the Tables Collection

CatNew.Tables.Append(objDesignTable)

' clean up objects

objDesignKey = Nothing

objDesignTable = Nothing

'. Add or delete column

'attributes or properties as desired.

catch

'error code here

end try

end sub

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
Does anyone know of a good example for creating a access database and then
tables within that database.

All the examples I have found so far use a SQL database.

Thanks,

Ken


Nov 21 '05 #3
Ken
Add Project COM references
Microsoft ADO ext (#.#) for DDL and Security
Microsoft ActiveX Data Objects #.# Library
Mike

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:4B**********************************@microsof t.com...
Thanks Mike.

What references are required?

Ken
"Michael" wrote:
Ken

Here's a sample I cut and pasted from a prior program I worked on
Hope it helps. Note that when appending the items you can specify if the
column data is nullable, a size, a datatype etc etc.

Mike

Private Sub CreateDatabase(ByVal filename As String)

Dim CnnNew As ADODB.Connection

Dim CatNew As ADOX.Catalog

Try

' Open a Connection and create the Catalog (Database)

'

CnnNew = New ADODB.Connection

CatNew = New ADOX.Catalog

CatNew.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _

"Data Source=" & filename & ";" & _

"Jet OLEDB:Engine Type=5")
'Open the connection

CnnNew.Open("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" &
filename)

'Open the Catalog

CatNew.ActiveConnection = CnnNew

'

'Now build all the Database tables as desired. Add or delete column

'attributes or properties as desired.

'

'Build and add the first Table

'

Dim objDesignTable As New ADOX.Table

With objDesignTable

..Name = "xxxxxxxx"

..ParentCatalog = CatNew

With .Columns

..Append("Units", ADOX.DataTypeEnum.adVarWChar)

..Append("Code", ADOX.DataTypeEnum.adVarWChar)

Append("Change X", adDouble)

..Append("Density", adDouble)

..Append("NA1", adDouble)

..Item("NA1").Attributes = ColumnAttributesEnum.adColNullable

..Append("Occasional Load Factor", adDouble)

..Append("Load Case W1", adBoolean)

..Append("Load Case T1", adBoolean)

..Append("Load X", adDouble)

..Item("Load X").Attributes = ColumnAttributesEnum.adColNullable

..Append("NA2", adDouble)

..Item("NA2").Attributes = ColumnAttributesEnum.adColNullable

..Append("FLAG1", adBoolean)

..Append("FLAG2", adBoolean)

..Append("FLAG3", adBoolean)

End With

'Create and Append a new auto incrementing column to be used

'as the primary key for the table

..Columns.Append("KeyID", adInteger)

..Columns("KeyID").Properties("AutoIncrement").Val ue = True

End With

'Create and Append a new key. Note that we are merely passing

'the "KeyID" column as the source of the primary key. This

'new Key will be Appended to the Keys Collection.

Dim objDesignKey As New ADOX.Key

objDesignKey.Name = "PrimaryKey"

objDesignKey.Type = KeyTypeEnum.adKeyPrimary

objDesignKey.Columns.Append("KeyID")

objDesignTable.Keys.Append(objDesignKey)

'Append the newly created table to the Tables Collection

CatNew.Tables.Append(objDesignTable)

' clean up objects

objDesignKey = Nothing

objDesignTable = Nothing

'. Add or delete column

'attributes or properties as desired.

catch

'error code here

end try

end sub

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
> Does anyone know of a good example for creating a access database and
> then
> tables within that database.
>
> All the examples I have found so far use a SQL database.
>
> Thanks,
>
> Ken
>


Nov 21 '05 #4
Appreicate you procedure. Just one more question: What Imports are required?

"Michael" wrote:
Ken
Add Project COM references
Microsoft ADO ext (#.#) for DDL and Security
Microsoft ActiveX Data Objects #.# Library
Mike

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:4B**********************************@microsof t.com...
Thanks Mike.

What references are required?

Ken
"Michael" wrote:
Ken

Here's a sample I cut and pasted from a prior program I worked on
Hope it helps. Note that when appending the items you can specify if the
column data is nullable, a size, a datatype etc etc.

Mike

Private Sub CreateDatabase(ByVal filename As String)

Dim CnnNew As ADODB.Connection

Dim CatNew As ADOX.Catalog

Try

' Open a Connection and create the Catalog (Database)

'

CnnNew = New ADODB.Connection

CatNew = New ADOX.Catalog

CatNew.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _

"Data Source=" & filename & ";" & _

"Jet OLEDB:Engine Type=5")
'Open the connection

CnnNew.Open("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" &
filename)

'Open the Catalog

CatNew.ActiveConnection = CnnNew

'

'Now build all the Database tables as desired. Add or delete column

'attributes or properties as desired.

'

'Build and add the first Table

'

Dim objDesignTable As New ADOX.Table

With objDesignTable

..Name = "xxxxxxxx"

..ParentCatalog = CatNew

With .Columns

..Append("Units", ADOX.DataTypeEnum.adVarWChar)

..Append("Code", ADOX.DataTypeEnum.adVarWChar)

Append("Change X", adDouble)

..Append("Density", adDouble)

..Append("NA1", adDouble)

..Item("NA1").Attributes = ColumnAttributesEnum.adColNullable

..Append("Occasional Load Factor", adDouble)

..Append("Load Case W1", adBoolean)

..Append("Load Case T1", adBoolean)

..Append("Load X", adDouble)

..Item("Load X").Attributes = ColumnAttributesEnum.adColNullable

..Append("NA2", adDouble)

..Item("NA2").Attributes = ColumnAttributesEnum.adColNullable

..Append("FLAG1", adBoolean)

..Append("FLAG2", adBoolean)

..Append("FLAG3", adBoolean)

End With

'Create and Append a new auto incrementing column to be used

'as the primary key for the table

..Columns.Append("KeyID", adInteger)

..Columns("KeyID").Properties("AutoIncrement").Val ue = True

End With

'Create and Append a new key. Note that we are merely passing

'the "KeyID" column as the source of the primary key. This

'new Key will be Appended to the Keys Collection.

Dim objDesignKey As New ADOX.Key

objDesignKey.Name = "PrimaryKey"

objDesignKey.Type = KeyTypeEnum.adKeyPrimary

objDesignKey.Columns.Append("KeyID")

objDesignTable.Keys.Append(objDesignKey)

'Append the newly created table to the Tables Collection

CatNew.Tables.Append(objDesignTable)

' clean up objects

objDesignKey = Nothing

objDesignTable = Nothing

'. Add or delete column

'attributes or properties as desired.

catch

'error code here

end try

end sub

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
> Does anyone know of a good example for creating a access database and
> then
> tables within that database.
>
> All the examples I have found so far use a SQL database.
>
> Thanks,
>
> Ken
>


Nov 21 '05 #5
I'm not Michael, but, you need to use: Imports ADOX
james

"Dennis" <De****@discussions.microsoft.com> wrote in message news:61**********************************@microsof t.com...
Appreicate you procedure. Just one more question: What Imports are required?

"Michael" wrote:
Ken
Add Project COM references
Microsoft ADO ext (#.#) for DDL and Security
Microsoft ActiveX Data Objects #.# Library
Mike

"Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
news:4B**********************************@microsof t.com...
> Thanks Mike.
>
> What references are required?
>
> Ken
>
>
> "Michael" wrote:
>
>> Ken
>>
>> Here's a sample I cut and pasted from a prior program I worked on
>> Hope it helps. Note that when appending the items you can specify if the
>> column data is nullable, a size, a datatype etc etc.
>>
>> Mike
>>
>> Private Sub CreateDatabase(ByVal filename As String)
>>
>> Dim CnnNew As ADODB.Connection
>>
>> Dim CatNew As ADOX.Catalog
>>
>> Try
>>
>> ' Open a Connection and create the Catalog (Database)
>>
>> '
>>
>> CnnNew = New ADODB.Connection
>>
>> CatNew = New ADOX.Catalog
>>
>> CatNew.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _
>>
>> "Data Source=" & filename & ";" & _
>>
>> "Jet OLEDB:Engine Type=5")
>>
>>
>> 'Open the connection
>>
>> CnnNew.Open("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" &
>> filename)
>>
>> 'Open the Catalog
>>
>> CatNew.ActiveConnection = CnnNew
>>
>> '
>>
>> 'Now build all the Database tables as desired. Add or delete column
>>
>> 'attributes or properties as desired.
>>
>> '
>>
>> 'Build and add the first Table
>>
>> '
>>
>> Dim objDesignTable As New ADOX.Table
>>
>> With objDesignTable
>>
>> ..Name = "xxxxxxxx"
>>
>> ..ParentCatalog = CatNew
>>
>> With .Columns
>>
>> ..Append("Units", ADOX.DataTypeEnum.adVarWChar)
>>
>> ..Append("Code", ADOX.DataTypeEnum.adVarWChar)
>>
>> Append("Change X", adDouble)
>>
>> ..Append("Density", adDouble)
>>
>> ..Append("NA1", adDouble)
>>
>> ..Item("NA1").Attributes = ColumnAttributesEnum.adColNullable
>>
>> ..Append("Occasional Load Factor", adDouble)
>>
>> ..Append("Load Case W1", adBoolean)
>>
>> ..Append("Load Case T1", adBoolean)
>>
>> ..Append("Load X", adDouble)
>>
>> ..Item("Load X").Attributes = ColumnAttributesEnum.adColNullable
>>
>> ..Append("NA2", adDouble)
>>
>> ..Item("NA2").Attributes = ColumnAttributesEnum.adColNullable
>>
>> ..Append("FLAG1", adBoolean)
>>
>> ..Append("FLAG2", adBoolean)
>>
>> ..Append("FLAG3", adBoolean)
>>
>> End With
>>
>> 'Create and Append a new auto incrementing column to be used
>>
>> 'as the primary key for the table
>>
>> ..Columns.Append("KeyID", adInteger)
>>
>> ..Columns("KeyID").Properties("AutoIncrement").Val ue = True
>>
>> End With
>>
>> 'Create and Append a new key. Note that we are merely passing
>>
>> 'the "KeyID" column as the source of the primary key. This
>>
>> 'new Key will be Appended to the Keys Collection.
>>
>> Dim objDesignKey As New ADOX.Key
>>
>> objDesignKey.Name = "PrimaryKey"
>>
>> objDesignKey.Type = KeyTypeEnum.adKeyPrimary
>>
>> objDesignKey.Columns.Append("KeyID")
>>
>> objDesignTable.Keys.Append(objDesignKey)
>>
>> 'Append the newly created table to the Tables Collection
>>
>> CatNew.Tables.Append(objDesignTable)
>>
>> ' clean up objects
>>
>> objDesignKey = Nothing
>>
>> objDesignTable = Nothing
>>
>> '. Add or delete column
>>
>> 'attributes or properties as desired.
>>
>> catch
>>
>> 'error code here
>>
>> end try
>>
>> end sub
>>
>> "Ken Kazinski" <Ke*********@discussions.microsoft.com> wrote in message
>> news:42**********************************@microsof t.com...
>> > Does anyone know of a good example for creating a access database and
>> > then
>> > tables within that database.
>> >
>> > All the examples I have found so far use a SQL database.
>> >
>> > Thanks,
>> >
>> > Ken
>> >
>>
>>
>>


Nov 21 '05 #6
Michael,

In fact is only the Microsoft ADOx.x for DLL and Security needed when you do
the building from the tables with Adonet instead with ADODB.

When you want a sample of that, reply than I have sent a times that too this
newsgroup.

Cor
Nov 21 '05 #7
On Sun, 23 Jan 2005 18:44:12 +0100, "Cor Ligthert" <no************@planet.nl> wrote:

¤ Michael,
¤
¤ In fact is only the Microsoft ADOx.x for DLL and Security needed when you do
¤ the building from the tables with Adonet instead with ADODB.
¤

AFAIK you need both.

If I remember correctly, the ADOX interop assembly only accepts an ADO Connection object for the
Catalog ActiveConnection property.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 21 '05 #8
Paul,
AFAIK you need both.

If I remember correctly, the ADOX interop assembly only accepts an ADO
Connection object for the
Catalog ActiveConnection property.


You don't, see this sample I have showed often in the dotnet newsgroups.
http://groups-beta.google.com/group/...00033570443de4

I have probably a later one as well, this is a little bit overcomplete one.

However I hope that this makes it clear.

Cor

Nov 21 '05 #9
On Mon, 24 Jan 2005 17:30:56 +0100, "Cor Ligthert" <no************@planet.nl> wrote:

¤ Paul,
¤
¤ > AFAIK you need both.
¤ >
¤ > If I remember correctly, the ADOX interop assembly only accepts an ADO
¤ > Connection object for the
¤ > Catalog ActiveConnection property.
¤ >
¤
¤ You don't, see this sample I have showed often in the dotnet newsgroups.
¤ http://groups-beta.google.com/group/...00033570443de4
¤
¤ I have probably a later one as well, this is a little bit overcomplete one.
¤
¤ However I hope that this makes it clear.
¤

I see, you used the Create method to specify the connection string. Nice shortcut.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 21 '05 #10
Hi Cor,

When I use the adox.create I get a error - "Could not find installable
ISAM.". Is there something else that needs to be referenced.

I have ADODB, ADO Ext. 2.8 in my references.

Thanks,

Ken
"Cor Ligthert" wrote:
Paul,
AFAIK you need both.

If I remember correctly, the ADOX interop assembly only accepts an ADO
Connection object for the
Catalog ActiveConnection property.


You don't, see this sample I have showed often in the dotnet newsgroups.
http://groups-beta.google.com/group/...00033570443de4

I have probably a later one as well, this is a little bit overcomplete one.

However I hope that this makes it clear.

Cor

Nov 21 '05 #11
Ken

I tried "Adox ext 2.8 for dll and security" with my sample and had no
problem at all.

Cor
Nov 21 '05 #12
On Tue, 25 Jan 2005 08:51:03 -0800, Ken Kazinski <Ke*********@discussions.microsoft.com> wrote:

¤ Hi Cor,
¤
¤ When I use the adox.create I get a error - "Could not find installable
¤ ISAM.". Is there something else that needs to be referenced.
¤
¤ I have ADODB, ADO Ext. 2.8 in my references.
¤

Possibly a bad connection string? You may want to post it so we can take a look.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 21 '05 #13
Hi Guys,

It was the connection string DataSource is 2 words.

Thanks very much.

Ken
"Paul Clement" wrote:
On Tue, 25 Jan 2005 08:51:03 -0800, Ken Kazinski <Ke*********@discussions.microsoft.com> wrote:

¤ Hi Cor,
¤
¤ When I use the adox.create I get a error - "Could not find installable
¤ ISAM.". Is there something else that needs to be referenced.
¤
¤ I have ADODB, ADO Ext. 2.8 in my references.
¤

Possibly a bad connection string? You may want to post it so we can take a look.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)

Nov 21 '05 #14
Hi Guys,

One more question - how do you release the connection?

Sub CreateDB (DB_PathName as string)

Dim NewDB As New ADOX.Catalog

NewDB.Create("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & DB_PathName)

NewDB = Nothing

This code leaves the *.ldb file in the directory and it can not be deleted
until the program exits.
Ken

Nov 21 '05 #15
Ken,

This answer I leave for Paul, he is much more busy with access than me.

I have this problem not by the way when the program closes the ldb is gone.

I am glad you found the error by the way.

Cor
Nov 21 '05 #16
Hi Cor,

I was looking for the newDB.close method or dispose method.

Ken
"Cor Ligthert" wrote:
Ken,

This answer I leave for Paul, he is much more busy with access than me.

I have this problem not by the way when the program closes the ldb is gone.

I am glad you found the error by the way.

Cor

Nov 21 '05 #17
On Wed, 26 Jan 2005 05:49:05 -0800, Ken Kazinski <Ke*********@discussions.microsoft.com> wrote:

¤ Hi Guys,
¤
¤ One more question - how do you release the connection?
¤
¤ Sub CreateDB (DB_PathName as string)
¤
¤ Dim NewDB As New ADOX.Catalog
¤
¤ NewDB.Create("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & DB_PathName)
¤
¤ NewDB = Nothing
¤
¤ This code leaves the *.ldb file in the directory and it can not be deleted
¤ until the program exits.

Try the following:

NewDB.ActiveConnection.Close()
NewDB.ActiveConnection = Nothing

ADOX can be a bit of a problem when it comes to closing connections via the COM interop layer. This
is why I typically establish the connection using the ADO Connection object instead of ADOX.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 21 '05 #18
Hi Paul,

That did it! It closed the data base and removed the *.ldb file.

Ken

Nov 21 '05 #19

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

Similar topics

0
by: K Finegan | last post by:
I have an archival process on a large database that runs once a month. At the beginning of the process the triggers and indexes on the tables whose data is moved are dropped, the data is moved and...
8
by: Brian S. Smith | last post by:
Hi gang, Please help. I've been through the Access help, searched the Web, and I can't seem to get a straight answer. As the Subject line suggests, I want to run a fairly simple VB/Access Sub...
2
by: cisco | last post by:
Could anyone point me in the direction of a document that describes the difference between JET and Access? I can't seem to find anything. Another question i have is i have this application (.net)...
3
by: patcho | last post by:
Hello, I have a problem that I was hoping to get some assistance with. I have built a split database (back end with all the tables and a password to protect the information & a front end to link...
1
by: Paul | last post by:
Hello, I am converting an Access database on our network to a sql 2000 backend and keeping access as the front end. The access database has evolved and been a solution to collect data but now...
2
by: egoldthwait | last post by:
I need to convert a 17mb access 2000 db to Oracle and house it in a Citrix farm. The issue: we have never converted an Access Db to Oracle but can probably use Oracle's Workbench to assist with...
1
by: gordon.dtr | last post by:
Hi, Has anyone had this problem ? I am using MySQL ODBC 3.51 Driver, with MS Access 2003 and MySQL 4.1.11 standard log. I created my tables in MS Access, then exported them via ODBC to an...
2
by: Anns via SQLMonster.com | last post by:
I have about 20 Ms Access Databases to need to be upload onto a SQL Server 2005. Currently the are on a network/server residing on a specific drive. The goal is to keep the user face the same...
4
by: RSH | last post by:
Hi, I have a situation where I have created a little application that makes an Access database from a SQL Database for reporting purposes. it does the job well, but it seems a bit slow. Is...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.